mirror of
https://github.com/libexpat/libexpat.git
synced 2025-04-05 13:14:59 +00:00
lib: Leverage strcmp/wcscmp
This commit is contained in:
parent
0b4939645c
commit
2f8b3ff0bf
1 changed files with 8 additions and 0 deletions
|
@ -7422,10 +7422,18 @@ copyEntityTable(XML_Parser oldParser, HASH_TABLE *newTable,
|
|||
|
||||
static XML_Bool FASTCALL
|
||||
keyeq(KEY s1, KEY s2) {
|
||||
#ifdef XML_UNICODE
|
||||
# ifdef XML_UNICODE_WCHAR_T
|
||||
return (wcscmp(s1, s2) == 0) ? XML_TRUE : XML_FALSE;
|
||||
# else
|
||||
for (; *s1 == *s2; s1++, s2++)
|
||||
if (*s1 == 0)
|
||||
return XML_TRUE;
|
||||
return XML_FALSE;
|
||||
# endif
|
||||
#else
|
||||
return (strcmp(s1, s2) == 0) ? XML_TRUE : XML_FALSE;
|
||||
#endif
|
||||
}
|
||||
|
||||
static size_t
|
||||
|
|
Loading…
Add table
Reference in a new issue