diff options
author | pommicket <pommicket@gmail.com> | 2023-01-03 15:38:54 -0500 |
---|---|---|
committer | pommicket <pommicket@gmail.com> | 2023-01-03 15:38:54 -0500 |
commit | baae904ed2c97ba5c701442ec5ef6900715f785d (patch) | |
tree | 6e6c10265624510dd73bb8bd0213a59fc02e3617 /util.h | |
parent | c37d493327ded5952f46cbf39aef920e47c1d7d9 (diff) |
switch from scancodes to keycodes
Diffstat (limited to 'util.h')
-rw-r--r-- | util.h | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -100,6 +100,8 @@ void print_bytes(const u8 *bytes, size_t n); char *strstr_case_insensitive(const char *haystack, const char *needle); // like strcmp, but case-insensitive int strcmp_case_insensitive(const char *a, const char *b); +// like streq, but case-insensitive +bool streq_case_insensitive(const char *a, const char *b); // function to be passed into qsort for case insensitive sorting int str_qsort_case_insensitive_cmp(const void *av, const void *bv); // the actual file name part of the path; get rid of the containing directory. |