#include <corecrt_internal.h>
#include <ctype.h>
#include <locale.h>
#include <string.h>
Go to the source code of this file.
◆ __ascii_stricmp()
Definition at line 68 of file stricmp.cpp.
72{
73 unsigned char const * lhs_ptr = reinterpret_cast<unsigned char const *>(lhs);
74 unsigned char const * rhs_ptr = reinterpret_cast<unsigned char const *>(rhs);
75
77 int lhs_value;
78 int rhs_value;
79 do
80 {
83 result = lhs_value - rhs_value;
84 }
85 while (
result == 0 && lhs_value != 0);
86
88}
__forceinline int __CRTDECL __ascii_tolower(int const _C)
Referenced by _stricmp().
◆ _stricmp()
Definition at line 90 of file stricmp.cpp.
94{
95 if (!__acrt_locale_changed())
96 {
97
100
102 }
103
105}
#define _VALIDATE_RETURN(expr, errorcode, retexpr)
int __cdecl __ascii_stricmp(char const *const lhs, char const *const rhs)
int __cdecl _stricmp_l(char const *const lhs, char const *const rhs, _locale_t const plocinfo)
◆ _stricmp_l()
Definition at line 39 of file stricmp.cpp.
44{
45
48
49 unsigned char const * lhs_ptr = reinterpret_cast<unsigned char const *>(lhs);
50 unsigned char const * rhs_ptr = reinterpret_cast<unsigned char const *>(rhs);
51
53
55 int lhs_value;
56 int rhs_value;
57 do
58 {
61 result = lhs_value - rhs_value;
62 }
63 while (
result == 0 && lhs_value != 0);
64
66}
_Check_return_ __forceinline unsigned char __cdecl _tolower_fast_internal(_In_ unsigned char const c, _In_ _locale_t const locale)
Referenced by _stricmp().