mirror of
https://github.com/matrix-construct/construct
synced 2024-11-26 08:42:34 +01:00
Name the fallback strncasecmp properly [ci skip]
This commit is contained in:
parent
ea3168fff8
commit
c9b6f58349
1 changed files with 1 additions and 1 deletions
|
@ -174,7 +174,7 @@ rb_strcasecmp(const char *s1, const char *s2)
|
|||
#ifndef _WIN32
|
||||
/* Fallback taken from FreeBSD. --Elizafox */
|
||||
int
|
||||
strncasecmp(const char *s1, const char *s2, size_t n)
|
||||
rb_strncasecmp(const char *s1, const char *s2, size_t n)
|
||||
{
|
||||
if (n != 0)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue