Thu, 26 Jan 2012 15:55:52 +0100
added regexp_parser struct and compile function
| 10 | 1 | /* |
| 2 | * arguments.h | |
| 3 | * | |
| 4 | * Created on: 15.09.2011 | |
|
20
43725438ac50
Changed author comments + added signatures for upcomming bfile heuristics
Mike Becker <universe@uap-core.de>
parents:
10
diff
changeset
|
5 | * Author: Mike |
| 10 | 6 | */ |
| 7 | ||
| 8 | #ifndef ARGUMENTS_H_ | |
| 9 | #define ARGUMENTS_H_ | |
| 10 | ||
| 11 | #include "stdinc.h" | |
| 12 | ||
| 13 | #ifdef _cplusplus | |
| 14 | extern "C" { | |
| 15 | #endif | |
| 16 | ||
| 17 | int checkArgument(const char*, const char*); | |
| 18 | bool registerArgument(int*, int); | |
| 19 | ||
| 20 | #ifdef _cplusplus | |
| 21 | } | |
| 22 | #endif | |
| 23 | ||
| 24 | #endif /* ARGUMENTS_H_ */ |