testc_module.c 431 B

123456789101112131415161718
  1. #include "faux/ini.h"
  2. const unsigned char testc_version_major = 1;
  3. const unsigned char testc_version_minor = 0;
  4. const char *testc_module[][2] = {
  5. // Demo
  6. {"testc_faux_ini_bad", "INI bad"}, // demo
  7. {"testc_faux_ini_signal", "Interrupted by signal"}, // demo
  8. {"testc_faux_ini_good", "INI subsystem good"}, // demo
  9. // INI
  10. {"testc_faux_ini_parse_file", "Complex test of INI file parsing"},
  11. // End of list
  12. {NULL, NULL}
  13. };