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
#define TOML_H
#include <stdio.h>
#include <stdint.h>
#ifdef __cplusplus
#define TOML_EXTERN extern "C"
#else

View File

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