cline.h

changeset 3
510d6b198dde
parent 1
34a5e235d16e
child 4
c3acfb3b4957
equal deleted inserted replaced
2:29ac790c27ad 3:510d6b198dde
1 #ifndef _CLINE_H
2 #define _CLINE_H
3
4 #include <stdio.h>
5 #include <string.h>
6 #include <stdbool.h>
7 #include <stdlib.h>
8 #include <dirent.h>
9
10 typedef struct _settings {
11 char fileSeparator;
12 int suffixc;
13 char** suffixv;
14 bool recursive;
15 bool includeSuffixes;
16 bool matchesOnly;
17 } settings_t;
18
19 settings_t* new_settings_t();
20
21 void printHelpText(const char* prgName);
22
23 #endif /* _CLINE_H */

mercurial