Fix compilation error

Fix compilation error (#6509)
This commit is contained in:
Theo Arends 2019-09-29 12:37:33 +02:00
parent ea72671018
commit 4c21e46512

View File

@ -125,7 +125,7 @@ size_t strcspn(const char *str1, const char *str2)
}
// https://clc-wiki.net/wiki/C_standard_library:string.h:strpbrk
// Locate the rst occurrence in the string pointed to by s1 of any character from the string pointed to by s2
// Locate the first occurrence in the string pointed to by s1 of any character from the string pointed to by s2
char* strpbrk(const char *s1, const char *s2)
{
while(*s1) {