functions.h

Mon, 30 May 2011 08:45:08 +0200

author
Mike Becker <universe@uap-core.de>
date
Mon, 30 May 2011 08:45:08 +0200
changeset 8
28319b20968c
parent 4
c3acfb3b4957
permissions
-rw-r--r--

encapsulated common operations

universe@3 1 #ifndef _CLINE_FUNCTIONS_H
universe@3 2 #define _CLINE_FUNCTIONS_H
universe@1 3
universe@4 4 #ifdef _cplusplus
universe@4 5 extern "C" {
universe@4 6 #endif
universe@4 7
universe@1 8 int checkArgument(const char*, const char*);
universe@8 9 bool registerArgument(int*, int);
universe@3 10 bool testSuffix(char* filename, settings_t* settings);
universe@3 11 int scanDirectory(DIR *dir, const int spaces,
universe@3 12 char* currdir, settings_t* settings);
universe@1 13
universe@4 14 #ifdef _cplusplus
universe@4 15 }
universe@4 16 #endif
universe@4 17
universe@4 18 #endif /* _CLINE_FUNCTIONS_H */

mercurial