23 lines
373 B
C
23 lines
373 B
C
|
#ifndef NVPARSE_H
|
||
|
#define NVPARSE_H
|
||
|
|
||
|
#define NVPARSE 1
|
||
|
|
||
|
#include <stdio.h>
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
|
||
|
|
||
|
void nvparse(const char * input_string, int argc,...);
|
||
|
char * const * const nvparse_get_errors();
|
||
|
char * const * const nvparse_print_errors(FILE *fp);
|
||
|
const int* nvparse_get_info(const char* input_string, int* pcount);
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
#endif
|