blob: 7abdc5f462fb9c02d5bdf1d38863ac0fe8a2699b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
// Grab the file extension of the filename passed.
// TODO: current just does it until the first. Add in variations to grab all,
// only specific entries like .tar.gz, etc.
void usage(void)
{
printf("fex: returns the extension of the filename passed\n");
exit(0);
}
int main(int argc, char **argv)
{
if (argc <= 1)
usage();
const char *file = argv[1]; // FIXME: unsafe.
size_t len = strlen(file);
if (len == 0)
fprintf(stderr, "length of file cannot be zero\n"), exit(-1);
for (len--; len != 0; len--)
{
if (file[len] == '.')
{
printf("%s\n", file + len + 1);
return 0;
}
}
return 0;
}
|