1#include "../git-compat-util.h" 2 3char *gitstrchrnul(const char *s, int c) 4{ 5 while (*s && *s != c) 6 s++; 7 return (char *)s; 8}
#include "../git-compat-util.h"
char *gitstrchrnul(const char *s, int c)
{
while (*s && *s != c)
s++;
return (char *)s;
}