mirror of
https://github.com/TwilitRealm/dusklight
synced 2026-05-25 07:02:47 -04:00
ba08966f58
* clean up MSL_C files according to prime decomp * remove asm
17 lines
280 B
C
17 lines
280 B
C
#ifndef MSL_COMMON_SRC_MBSTRING_H
|
|
#define MSL_COMMON_SRC_MBSTRING_H
|
|
|
|
#include "MSL_C/MSL_Common/Src/wchar_io.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
size_t wcstombs(char* dst, const wchar_t* src, size_t n);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* MSL_COMMON_SRC_MBSTRING_H */
|