this repo has no description
1// Copyright (c) Facebook, Inc. and its affiliates. (http://www.facebook.com)
2#include <strings.h>
3
4#include "cpython-func.h"
5
6#include "api-handle.h"
7
8namespace py {
9
10PY_EXPORT int PyOS_stricmp(const char* s1, const char* s2) {
11 return ::strcasecmp(s1, s2);
12}
13
14PY_EXPORT int PyOS_strnicmp(const char* s1, const char* s2, Py_ssize_t size) {
15 return ::strncasecmp(s1, s2, size);
16}
17
18} // namespace py