diff options
author | pommicket <pommicket@gmail.com> | 2023-01-02 14:10:38 -0500 |
---|---|---|
committer | pommicket <pommicket@gmail.com> | 2023-01-02 14:10:38 -0500 |
commit | f791aa01fad7e81223808584212c6a1a4c80ca07 (patch) | |
tree | f93d53a62035cdad7f16b97fb28c83c7acfaf14f /util.c | |
parent | c0d0117a963cf8e4dfb28b919087d8a8ecbbca6e (diff) |
finish restructuring
Diffstat (limited to 'util.c')
-rw-r--r-- | util.c | 9 |
1 files changed, 5 insertions, 4 deletions
@@ -1,3 +1,7 @@ +#include "base.h" +#include "util.h" +#include "unicode.h" + #if _WIN32 #include <intrin.h> #include <direct.h> @@ -6,10 +10,7 @@ #else #error "Unrecognized operating system." #endif - -#include "base.h" -#include "util.h" -#include "unicode.h" +#include <wctype.h> // on 16-bit systems, this is 16383. on 32/64-bit systems, this is 1073741823 // it is unusual to have a string that long. |