2022-11-09 15:29:33 +00:00
|
|
|
#ifndef _WCHAR_H
|
|
|
|
#define _WCHAR_H
|
|
|
|
|
2022-11-12 13:16:00 +00:00
|
|
|
#include <bits/macros.h>
|
2022-11-09 15:29:33 +00:00
|
|
|
#include <stddef.h>
|
|
|
|
|
2022-11-12 13:16:00 +00:00
|
|
|
typedef unsigned int wint_t;
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C"
|
|
|
|
{
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Return the length of a wide-character string. */
|
|
|
|
size_t wcslen(const wchar_t* str);
|
|
|
|
|
|
|
|
/* Concatenates the wide-character string src into dest. */
|
|
|
|
__lc_is_deprecated wchar_t* wcscat(wchar_t* dest, const wchar_t* src);
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
2022-11-09 15:29:33 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|