mirror of
https://github.com/pret/pmd-red.git
synced 2026-03-21 17:46:39 -05:00
12 lines
393 B
C
12 lines
393 B
C
#ifndef GUARD_DECOMPRESS_3_H
|
|
#define GUARD_DECOMPRESS_3_H
|
|
|
|
// Returns FALSE if the ascii chars in both strings match, ignoring uppercase/lowercase differences.
|
|
// "YeS\0" and "yEs\0" => FALSE
|
|
// "Yes\0" and "Tes\0" => TRUE
|
|
// "Yes\0" and "y\0" => TRUE
|
|
// "T\0" and "Tes\0" => TRUE
|
|
bool8 StrsDifferent_IgnoreCase(const char *strA, const char *strB, s32 maxLen);
|
|
|
|
#endif // GUARD_DECOMPRESS_3_H
|