|      7  | 
     7  | 
|      8 #ifndef ARGUMENTS_H_ | 
     8 #ifndef ARGUMENTS_H_ | 
|      9 #define ARGUMENTS_H_ | 
     9 #define ARGUMENTS_H_ | 
|     10  | 
    10  | 
|     11 #include "stdinc.h" | 
    11 #include "stdinc.h" | 
|         | 
    12 #include "string_list.h" | 
|     12  | 
    13  | 
|     13 #ifdef _cplusplus | 
    14 #ifdef _cplusplus | 
|     14 extern "C" { | 
    15 extern "C" { | 
|     15 #endif | 
    16 #endif | 
|     16  | 
    17  | 
|     17 int checkArgument(const char*, const char*); | 
    18 int checkArgument(const char*, const char*); | 
|         | 
    19 bool checkParamOpt(int*); | 
|     18 bool registerArgument(int*, int); | 
    20 bool registerArgument(int*, int); | 
|         | 
    21 void parseCSL(char*, string_list_t*); | 
|     19  | 
    22  | 
|     20 #ifdef _cplusplus | 
    23 #ifdef _cplusplus | 
|     21 } | 
    24 } | 
|     22 #endif | 
    25 #endif | 
|     23  | 
    26  |