pmd-red/include/decompress_3.h
2025-03-21 23:48:05 -04:00

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