mirror of
https://github.com/zeldaret/tp
synced 2026-06-04 10:48:57 -04:00
e1114ebcf9
* clean up MSL_C files according to prime decomp * remove asm
16 lines
278 B
C
16 lines
278 B
C
#ifndef MSL_COMMON_SRC_EXTRAS_H
|
|
#define MSL_COMMON_SRC_EXTRAS_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
int strnicmp(const char* str1, const char* str2, int n);
|
|
int stricmp(const char* str1, const char* str2);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* MSL_COMMON_SRC_EXTRAS_H */
|