Fix isdelim

This commit is contained in:
Alex 2023-03-25 11:55:42 +02:00
parent 13890ba91a
commit 177a80403f
Signed by untrusted user who does not match committer: enderice2
GPG Key ID: EACC3AD603BAB4DD
2 changed files with 2 additions and 2 deletions

View File

@ -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')
{

View File

@ -12,7 +12,7 @@ extern "C"
int isempty(char *str);
int isalpha(int c);
int isupper(int c);
unsigned int isdelim(char c, char *delim);
unsigned int isdelim(char c, const char *delim);
long abs(long i);
void swap(char *x, char *y);
char *reverse(char *Buffer, int i, int j);