forked from KolibriOS/kolibrios
1391dd1d1d
"Optimised" some functions in string.h Added dynamic libraries support based on sysfunction 68.19 (experimental) git-svn-id: svn://kolibrios.org@215 a494cfbc-eb01-0410-851d-a64ba20cac60
11 lines
151 B
C
11 lines
151 B
C
char* strchr(const char* string, int c)
|
|
{
|
|
while (*string)
|
|
{
|
|
if (*string==c)
|
|
return (char*)string;
|
|
string++;
|
|
}
|
|
return (char*)0;
|
|
}
|