Files
tp/include/MSL_C/MSL_Common/Src/extras.h
T

16 lines
278 B
C
Raw Normal View History

2022-03-19 23:44:14 -04:00
#ifndef MSL_COMMON_SRC_EXTRAS_H
#define MSL_COMMON_SRC_EXTRAS_H
2023-01-02 21:28:46 -08:00
#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
2022-03-19 23:44:14 -04:00
#endif /* MSL_COMMON_SRC_EXTRAS_H */