cline.h

Thu, 01 Dec 2011 17:04:30 +0100

author
Mike Becker <universe@uap-core.de>
date
Thu, 01 Dec 2011 17:04:30 +0100
changeset 25
802c5382f499
parent 22
4508da679ffb
permissions
-rw-r--r--

Added line buffer (and warning message - there is no regexp parser, though)

     1 /*
     2  * cline.h
     3  *
     4  *  Created on: 23.05.2011
     5  *      Author: Mike
     6  */
     8 #ifndef CLINE_H_
     9 #define CLINE_H_
    11 const char* VERSION=""; /* will be replaced by makefile */
    13 #include "stdinc.h"
    14 #include "settings.h"
    16 #ifdef _cplusplus
    17 extern "C" {
    18 #endif
    20 void printHelpText();
    21 int exit_with_version(settings_t*);
    22 int exit_with_help(settings_t*, int);
    24 #ifdef _cplusplus
    25 }
    26 #endif
    28 #endif /* CLINE_H_ */

mercurial