diff options
Diffstat (limited to 'src/ini_write.c')
-rw-r--r-- | src/ini_write.c | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/ini_write.c b/src/ini_write.c new file mode 100644 index 0000000..785f35f --- /dev/null +++ b/src/ini_write.c @@ -0,0 +1,13 @@ +/* INI fájl olvasás */ + +#include <stdio.h> +#include <string.h> /* strncpy + strerror */ +#include <stdlib.h> /* malloc(), atoi(), exit(EXIT_FALIURE) */ +#include <errno.h> /* errno */ +#include <stdarg.h> +#include <stdint.h> /* int64_t */ + +#define ini_write_c +#include "inirw_internal.h" +#include "lightconfini.h" + |