#include <corecrt_internal.h>
#include <ctype.h>
#include <locale.h>
#include <string.h>
Go to the source code of this file.
◆ __ascii_memicmp()
Definition at line 77 of file memicmp.cpp.
82{
84 {
85 return 0;
86 }
87
88 unsigned char const * lhs_ptr = static_cast<unsigned char const *>(lhs);
89 unsigned char const * rhs_ptr = static_cast<unsigned char const *>(rhs);
90
92 size_t remaining =
count;
93 do
94 {
96 }
97 while (
result == 0 && --remaining != 0);
98
100}
GLuint GLuint GLsizei count
__forceinline int __CRTDECL __ascii_tolower(int const _C)
Referenced by _memicmp().
◆ _memicmp()
Definition at line 104 of file memicmp.cpp.
109{
110 if (!__acrt_locale_changed())
111 {
112
115
117 }
118
120}
#define _VALIDATE_RETURN(expr, errorcode, retexpr)
int __cdecl _memicmp_l(void const *const lhs, void const *const rhs, size_t const count, _locale_t const plocinfo)
int __cdecl __ascii_memicmp(void const *const lhs, void const *const rhs, size_t const count)
◆ _memicmp_l()
Definition at line 41 of file memicmp.cpp.
47{
48
51
53 {
54 return 0;
55 }
56
57 unsigned char const * lhs_ptr = static_cast<unsigned char const *>(lhs);
58 unsigned char const * rhs_ptr = static_cast<unsigned char const *>(rhs);
59
61
63 size_t remaining =
count;
64 do
65 {
68 }
69 while (
result == 0 && --remaining != 0);
70
72}
_Check_return_ __forceinline unsigned char __cdecl _tolower_fast_internal(_In_ unsigned char const c, _In_ _locale_t const locale)
Referenced by _memicmp().