Skip to content

Commit

Permalink
strncasecmp -> SCPIDEFINE_strncasecmp
Browse files Browse the repository at this point in the history
  • Loading branch information
MisterHW committed Jan 17, 2023
1 parent 0e7c828 commit 5dfac2b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libscpi/src/utils.c
Original file line number Diff line number Diff line change
Expand Up @@ -1176,7 +1176,7 @@ char * strncasestrn (const char *s, size_t slen, const char *find, size_t findle
if (findlen > slen) {
return NULL;
}
} while (strncasecmp (s, find, findlen) != 0);
} while (SCPIDEFINE_strncasecmp(s, find, findlen) != 0);

s--;
return (char *)s;
Expand Down

0 comments on commit 5dfac2b

Please sign in to comment.