stringop: move over has_prefix()

This commit is contained in:
Simon Ser 2025-01-07 13:21:37 +01:00 committed by Kenny Levinsen
parent 801bc76ce3
commit c55dff95bc
3 changed files with 6 additions and 4 deletions

View file

@ -360,3 +360,7 @@ char *format_str(const char *fmt, ...) {
va_end(args);
return str;
}
bool has_prefix(const char *str, const char *prefix) {
return strncmp(str, prefix, strlen(prefix)) == 0;
}