fixed some bugs, added LIST, Makefile & .distr
This commit is contained in:
@@ -9,7 +9,7 @@
|
||||
size_t
|
||||
strcspn(const char *string, const char *notin)
|
||||
{
|
||||
register char *s1, *s2;
|
||||
register const char *s1, *s2;
|
||||
|
||||
for (s1 = string; *s1; s1++) {
|
||||
for(s2 = notin; *s2 != *s1 && *s2; s2++)
|
||||
|
||||
Reference in New Issue
Block a user