This commit is contained in:
CK Tan 2019-02-16 17:37:59 -08:00
parent 3b6fe37d66
commit 43f7a52064
3 changed files with 702 additions and 699 deletions

5
toml.h
View file

@ -25,6 +25,11 @@ SOFTWARE.
#ifndef TOML_H #ifndef TOML_H
#define TOML_H #define TOML_H
#include <stdio.h>
#include <stdint.h>
#ifdef __cplusplus #ifdef __cplusplus
#define TOML_EXTERN extern "C" #define TOML_EXTERN extern "C"
#else #else

View file

@ -26,11 +26,9 @@ SOFTWARE.
#undef NDEBUG #undef NDEBUG
#endif #endif
#include <stdio.h>
#include <string.h> #include <string.h>
#include <stdlib.h> #include <stdlib.h>
#include <errno.h> #include <errno.h>
#include <stdint.h>
#include <assert.h> #include <assert.h>
#include <inttypes.h> #include <inttypes.h>
#include "toml.h" #include "toml.h"