1 2 3 4 5 6 7 8 9
/* ISC license. */ #include <string.h> #include <skalibs/bytestr.h> int str_start (char const *s, char const *t) { return !strncmp(s, t, strlen(t)) ; }