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

#ifndef _CLINE_FUNCTIONS_H
#define _CLINE_FUNCTIONS_H

#ifdef _cplusplus
extern "C" {
#endif

int checkArgument(const char*, const char*);
bool testSuffix(char* filename, settings_t* settings);
int scanDirectory(DIR *dir, const int spaces,
                  char* currdir, settings_t* settings);

#ifdef _cplusplus
}
#endif 
                  
#endif /* _CLINE_FUNCTIONS_H */

mercurial