diff options
author | EuAndreh <eu@euandre.org> | 2024-04-16 09:11:07 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2024-04-16 09:11:25 -0300 |
commit | 1ab6196731ec2ef4de411f7c9106c57c55127ca8 (patch) | |
tree | e43c9663547ce57637de50d58f56e09ad8b30942 /src/util.c | |
parent | src/: Change "argv" definitions from "char **" to "char *[]" (diff) | |
download | pindaiba-1ab6196731ec2ef4de411f7c9106c57c55127ca8.tar.gz pindaiba-1ab6196731ec2ef4de411f7c9106c57c55127ca8.tar.xz |
Organaze imports
Diffstat (limited to 'src/util.c')
-rw-r--r-- | src/util.c | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -5,11 +5,12 @@ #include <stdlib.h> #include <string.h> -#include "util.h" #include "logerr.h" +#include "util.h" + -static const size_t +const size_t NULL_TERMINATOR = sizeof((char)'\0'); int |