diff options
| author | Clecio Jung | 2023-03-24 18:18:19 -0300 |
|---|---|---|
| committer | Clecio Jung | 2023-03-24 18:18:19 -0300 |
| commit | a33d389310a35bc181583b0f25dbf742e67295e9 (patch) | |
| tree | 8e4c622b259606b09a724c73286e006fa6944144 /examples/ini_file_create.c | |
| parent | 629d03b079b29f6d5178c407537aa15f9d109ec8 (diff) | |
| download | libini-a33d389310a35bc181583b0f25dbf742e67295e9.tar.xz libini-a33d389310a35bc181583b0f25dbf742e67295e9.tar.zst | |
USing macros to avoid code repetition
Diffstat (limited to 'examples/ini_file_create.c')
| -rw-r--r-- | examples/ini_file_create.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/ini_file_create.c b/examples/ini_file_create.c index 2aeb5a6..1adc665 100644 --- a/examples/ini_file_create.c +++ b/examples/ini_file_create.c @@ -3,13 +3,13 @@ *------------------------------------------------------------------------------ */ +#include "../ini_file.h" + #include <ctype.h> #include <stdio.h> #include <stdlib.h> #include <string.h> -#include "../ini_file.h" - #define MAX_STRING_SIZE 1024 /* This function reads a string of size MAX_STRING_SIZE from stdin. |
