https://github.com/python/cpython
Revision 1d5479b236e9a66dd32a24eff6fb83e3242b999d authored by Irit Katriel on 02 April 2024, 10:34:49 UTC, committed by GitHub on 02 April 2024, 10:34:49 UTC
1 parent 5fd1897
Raw File
Tip revision: 1d5479b236e9a66dd32a24eff6fb83e3242b999d authored by Irit Katriel on 02 April 2024, 10:34:49 UTC
gh-117411: move PyFutureFeatures to pycore_symtable.h and make it private (#117412)
Tip revision: 1d5479b
pystrcmp.c
/* Cross platform case insensitive string compare functions
 */

#include "Python.h"

int
PyOS_mystrnicmp(const char *s1, const char *s2, Py_ssize_t size)
{
    const unsigned char *p1, *p2;
    if (size == 0)
        return 0;
    p1 = (const unsigned char *)s1;
    p2 = (const unsigned char *)s2;
    for (; (--size > 0) && *p1 && *p2 && (Py_TOLOWER(*p1) == Py_TOLOWER(*p2));
         p1++, p2++) {
        ;
    }
    return Py_TOLOWER(*p1) - Py_TOLOWER(*p2);
}

int
PyOS_mystricmp(const char *s1, const char *s2)
{
    const unsigned char *p1 = (const unsigned char *)s1;
    const unsigned char *p2 = (const unsigned char *)s2;
    for (; *p1 && *p2 && (Py_TOLOWER(*p1) == Py_TOLOWER(*p2)); p1++, p2++) {
        ;
    }
    return (Py_TOLOWER(*p1) - Py_TOLOWER(*p2));
}
back to top