nvparse.h 399 B

12345678910111213141516171819202122
  1. #ifndef NVPARSE_H
  2. #define NVPARSE_H
  3. #define NVPARSE 1
  4. #include <stdio.h>
  5. #ifdef __cplusplus
  6. extern "C" {
  7. #endif
  8. void nvparse(const char * input_string, int argc = 0,...);
  9. char * const * const nvparse_get_errors();
  10. char * const * const nvparse_print_errors(FILE *fp);
  11. const int* nvparse_get_info(const char* input_string, int* pcount);
  12. #ifdef __cplusplus
  13. }
  14. #endif
  15. #endif