0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-10-01 21:28:53 +02:00

Name the fallback strncasecmp properly [ci skip]

This commit is contained in:
Elizabeth Myers 2016-04-10 17:28:20 -05:00
parent ea3168fff8
commit c9b6f58349

View file

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