mirror of
https://github.com/ACreTeam/ac-decomp
synced 2026-05-23 14:41:38 -04:00
17 lines
256 B
C
17 lines
256 B
C
#ifndef _MSL_COMMON_MBSTRING_H
|
|
#define _MSL_COMMON_MBSTRING_H
|
|
|
|
#include "MSL_C/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_MBSTRING_H */
|