in include/yyjson/yyjson.c [3937:3972]
static_noinline bool skip_spaces_and_comments(u8 **ptr) {
u8 *hdr = *ptr;
u8 *cur = *ptr;
u8 **end = ptr;
while (true) {
if (byte_match_2(cur, "/*")) {
hdr = cur;
cur += 2;
while (true) {
if (byte_match_2(cur, "*/")) {
cur += 2;
break;
}
if (*cur == 0) {
*end = hdr;
return false;
}
cur++;
}
continue;
}
if (byte_match_2(cur, "//")) {
cur += 2;
while (!char_is_line_end(*cur)) cur++;
continue;
}
if (char_is_space(*cur)) {
cur += 1;
while (char_is_space(*cur)) cur++;
continue;
}
break;
}
*end = cur;
return hdr != cur;
}