libcurl.js/client/util.c
2024-01-26 18:27:17 -05:00

5 lines
No EOL
110 B
C

#include <string.h>
int starts_with(const char *a, const char *b) {
return strncmp(a, b, strlen(b)) == 0;
}