Allow specifying * instead of any of the MENU COLOR fields.
[syslinux.git] / com32 / lib / strlen.c
blob847c16eb680ba7a19935f2f742f2cef09137fab4
1 /*
2 * strlen()
3 */
5 #include <string.h>
7 size_t strlen(const char *s)
9 const char *ss = s;
10 while ( *ss )
11 ss++;
12 return ss-s;