mirror of
https://github.com/TwilitRealm/dusklight
synced 2026-07-28 23:15:32 -04:00
a6f059827b
* Game ABI / headers refactoring * Delete dusk/imgui.h
15 lines
213 B
C
15 lines
213 B
C
#pragma once
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#ifndef _MSC_VER
|
|
int strnicmp(const char* str1, const char* str2, int n);
|
|
int stricmp(const char* str1, const char* str2);
|
|
#endif
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|