diff options
Diffstat (limited to 'src/string/strspn.c')
-rw-r--r-- | src/string/strspn.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/string/strspn.c b/src/string/strspn.c index 3facfd8..f8d1dac 100644 --- a/src/string/strspn.c +++ b/src/string/strspn.c @@ -82,7 +82,7 @@ size_t strcspn(const char* string, const char* stopset) * `string` of a byte found in `stopset`. * `NULL` is returned if none is found. */ -char* stpbrk(const char* string, const char* stopset) +char* strpbrk(const char* string, const char* stopset) { char set[256]; char c; |