make schedule.h self-contained
[ppcg.git] / util.h
blob6c29a150e4d16d8767d9970aad18001739c29d9c
1 #ifndef UTIL_H
2 #define UTIL_H
4 #include <string.h>
6 /* Compare the prefix of "s" to "prefix" up to the length of "prefix".
7 */
8 static inline int prefixcmp(const char *s, const char *prefix)
10 return strncmp(s, prefix, strlen(prefix));
13 #endif