strstarts 56 scripts/dtc/dtc.h #define strstarts(s, prefix) (strncmp((s), (prefix), strlen(prefix)) == 0) strstarts 315 scripts/mod/modpost.c #define strstarts(str, prefix) (strncmp(str, prefix, strlen(prefix)) == 0) strstarts 40 tools/include/linux/string.h static inline bool strstarts(const char *str, const char *prefix)