arguments.h

Thu, 09 Feb 2012 15:56:18 +0100

author
Mike Becker <universe@uap-core.de>
date
Thu, 09 Feb 2012 15:56:18 +0100
changeset 30
d642fdb6745e
parent 20
43725438ac50
permissions
-rw-r--r--

allow parallel use of -s and -S

     1 /*
     2  * arguments.h
     3  *
     4  *  Created on: 15.09.2011
     5  *      Author: Mike
     6  */
     8 #ifndef ARGUMENTS_H_
     9 #define ARGUMENTS_H_
    11 #include "stdinc.h"
    12 #include "string_list.h"
    14 #ifdef _cplusplus
    15 extern "C" {
    16 #endif
    18 int checkArgument(const char*, const char*);
    19 bool checkParamOpt(int*);
    20 bool registerArgument(int*, int);
    21 void parseCSL(char*, string_list_t*);
    23 #ifdef _cplusplus
    24 }
    25 #endif
    27 #endif /* ARGUMENTS_H_ */

mercurial