diff options
| author | Tim J. Robbins <tjr@FreeBSD.org> | 2002-08-20 22:44:40 +0000 |
|---|---|---|
| committer | Tim J. Robbins <tjr@FreeBSD.org> | 2002-08-20 22:44:40 +0000 |
| commit | 71f9b4206738f520b8e6f31d216f9b9d979dadb9 (patch) | |
| tree | 5cec9093a0b20a2dd500d277213a7bee31eee2aa /include | |
| parent | a9c61b3dfc590ac09244c2a44ba0d08cb1377775 (diff) | |
Notes
Diffstat (limited to 'include')
| -rw-r--r-- | include/wchar.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/include/wchar.h b/include/wchar.h index 0992675e841e..36785ca09458 100644 --- a/include/wchar.h +++ b/include/wchar.h @@ -145,14 +145,17 @@ size_t wcsrtombs(char * __restrict, const wchar_t ** __restrict, size_t, mbstate_t * __restrict); size_t wcsspn(const wchar_t *, const wchar_t *); wchar_t *wcsstr(const wchar_t *, const wchar_t *); -int wcswidth(const wchar_t *, size_t); int wctob(wint_t); -int wcwidth(wchar_t); wchar_t *wmemchr(const wchar_t *, wchar_t, size_t); int wmemcmp(const wchar_t *, const wchar_t *, size_t); wchar_t *wmemcpy(wchar_t * __restrict, const wchar_t * __restrict, size_t); wchar_t *wmemmove(wchar_t *, const wchar_t *, size_t); wchar_t *wmemset(wchar_t *, wchar_t, size_t); + +#if __XSI_VISIBLE +int wcswidth(const wchar_t *, size_t); +int wcwidth(wchar_t); +#endif __END_DECLS #define getwc(fp) fgetwc(fp) |
