mirror of
https://github.com/Fennix-Project/Kernel.git
synced 2025-07-08 05:49:17 +00:00
Fix isdelim
This commit is contained in:
@ -304,7 +304,7 @@ EXTERNC int isempty(char *str)
|
||||
return 1;
|
||||
}
|
||||
|
||||
EXTERNC unsigned int isdelim(char c, char *delim)
|
||||
EXTERNC unsigned int isdelim(char c, const char *delim)
|
||||
{
|
||||
while (*delim != '\0')
|
||||
{
|
||||
|
Reference in New Issue
Block a user