mirror of
https://github.com/TwilitRealm/dusklight
synced 2026-05-25 07:02:47 -04:00
16 lines
248 B
C
16 lines
248 B
C
#ifndef _SRC_EXTRAS_H_
|
|
#define _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 // _SRC_EXTRAS_H_
|