1
0
mirror of https://github.com/janet-lang/janet synced 2024-09-21 03:39:36 +00:00

refactor(c-api): Use size_t on janet_cstrcmp

This commit is contained in:
GrayJack 2024-04-18 02:30:51 -03:00
parent 2d17e08a8b
commit ef04bf557f

View File

@ -341,8 +341,8 @@ const JanetKV *janet_dictionary_next(const JanetKV *kvs, size_t cap, const Janet
/* Compare a janet string with a cstring. More efficient than loading
* c string as a janet string. */
int janet_cstrcmp(const uint8_t *str, const char *other) {
int32_t len = janet_string_length(str);
int32_t index;
size_t len = janet_string_length(str);
size_t index;
for (index = 0; index < len; index++) {
uint8_t c = str[index];
uint8_t k = ((const uint8_t *)other)[index];