diff -r 29ac790c27ad -r 510d6b198dde cline.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/cline.h Thu May 26 14:39:52 2011 +0200 @@ -0,0 +1,23 @@ +#ifndef _CLINE_H +#define _CLINE_H + +#include +#include +#include +#include +#include + +typedef struct _settings { + char fileSeparator; + int suffixc; + char** suffixv; + bool recursive; + bool includeSuffixes; + bool matchesOnly; +} settings_t; + +settings_t* new_settings_t(); + +void printHelpText(const char* prgName); + +#endif /* _CLINE_H */