diff options
| author | Tyge Løvset <[email protected]> | 2020-11-24 13:47:02 +0100 |
|---|---|---|
| committer | Tyge Løvset <[email protected]> | 2020-11-24 13:47:02 +0100 |
| commit | 8adb5401f21968730ab5ee870d1ef2ce487eb0bc (patch) | |
| tree | 4d92eb5992e095b0016a2c0d287b3f1d22a5d8db | |
| parent | 623066503a9226fd437c49e57be7199df0a0a2c8 (diff) | |
| download | STC-modified-8adb5401f21968730ab5ee870d1ef2ce487eb0bc.tar.gz STC-modified-8adb5401f21968730ab5ee870d1ef2ce487eb0bc.zip | |
Forgot #include <ctype.h> required by tolower().
| -rw-r--r-- | stc/cstr.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -28,6 +28,7 @@ #include <string.h>
#include <stdarg.h>
#include <stdio.h> /* vsnprintf */
+#include <ctype.h>
typedef struct cstr { char* str; } cstr_t;
typedef struct { char *val; } cstr_iter_t;
|
