X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=string.h;h=08fcb96d29e58929ce292fe3f424a2d30f569422;hb=cbb1d1270257cb8d23cc37c2e621b8ea7f437a84;hp=5aca81817ffbfc4c251f127c18e4c492345b0559;hpb=4136883c2341e1f39ea9919841d3680b134e1b27;p=pdclib.old diff --git a/string.h b/string.h index 5aca818..08fcb96 100755 --- a/string.h +++ b/string.h @@ -153,13 +153,13 @@ char * strrchr( const char * s, int c ); consists only of characters from the character array s2. Returns the length of that substring. */ -size_t strspn( const char * s1, const char s2 ); +size_t strspn( const char * s1, const char * s2 ); /* Search the character array s1 for the substring in character array s2. Returns a pointer to that sbstring, or NULL. If s2 is of length zero, returns s1. */ -char * strstr( const char * s1, const char s2 ); +char * strstr( const char * s1, const char * s2 ); /* In a series of subsequent calls, parse a C string into tokens. On the first call to strtok(), the first argument is a pointer to the to-be-