functions.h

Fri, 27 May 2011 12:49:33 +0200

author
Mike Becker <universe@uap-core.de>
date
Fri, 27 May 2011 12:49:33 +0200
changeset 4
c3acfb3b4957
parent 3
510d6b198dde
child 8
28319b20968c
permissions
-rw-r--r--

Fixed missing return statement in new_settings_t.
Added support for c++ compilers.
Added destroy_settings_t function

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@3 9 bool testSuffix(char* filename, settings_t* settings);
universe@3 10 int scanDirectory(DIR *dir, const int spaces,
universe@3 11 char* currdir, settings_t* settings);
universe@1 12
universe@4 13 #ifdef _cplusplus
universe@4 14 }
universe@4 15 #endif
universe@4 16
universe@4 17 #endif /* _CLINE_FUNCTIONS_H */

mercurial