blob: 2b420f2f87a4221af17a1252bc1d8859b712b2fa (
plain)
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
#include <unistd.h>
#include <stdio.h>
#include <stdlib.h>
#include <errno.h>
#include "eo_tokenizer.h"
int _eo_tokenizer_log_dom = -1;
int main(int argc, char **argv)
{
char *fpath;
Eo_Tokenizer *toknz;
if (argc < 2)
{
fprintf(stderr, "usage %s input_file\n", argv[0]);
exit(EXIT_FAILURE);
}
fpath = argv[1];
eina_init();
eina_log_color_disable_set(EINA_FALSE);
_eo_tokenizer_log_dom = eina_log_domain_register("eo_toknz", EINA_COLOR_CYAN);
if (access(fpath, F_OK) != 0)
{
ERR("error accessing file %s : %s", fpath, strerror(errno));
exit(EXIT_FAILURE);
}
toknz = eo_tokenizer_get(fpath);
if (!toknz)
{
ERR("can't create eo_tokenizer");
eina_shutdown();
exit(EXIT_FAILURE);
}
eo_tokenizer_walk(toknz, fpath);
eo_tokenizer_free(toknz);
eina_shutdown();
return EXIT_SUCCESS;
}
|