//--- // gint:std:string-ext: Extensions to the standard for //--- #include #include GWEAK char *strchrnul(char const *s, int c) { while(*s && *s != c) s++; return (char *)s; }