X-Git-Url: https://pd.if.org/git/?p=pdclib;a=blobdiff_plain;f=includes%2Fwchar.h;h=59955b3d80b7a3cb5fa0d6d72123d8d9ecc4cf50;hp=eab2984b0e297539c88f1c87d59a1664339d11b0;hb=0e9b1a27ae0d06ede490aa0c96b8dc35624388d0;hpb=3071bd27f65baa5a3dfd135011231c8fb92dca7d diff --git a/includes/wchar.h b/includes/wchar.h index eab2984..59955b3 100644 --- a/includes/wchar.h +++ b/includes/wchar.h @@ -25,11 +25,11 @@ typedef _PDCLIB_wchar_t wchar_t; #endif #endif -wchar_t *wcschr( const wchar_t * haystack, wchar_t needle ); -wchar_t *wcsrchr( const wchar_t * haystack, wchar_t needle ); -size_t wcslen( const wchar_t * string); +wchar_t *wcschr( const wchar_t * haystack, wchar_t needle ) _PDCLIB_nothrow; +wchar_t *wcsrchr( const wchar_t * haystack, wchar_t needle ) _PDCLIB_nothrow; +size_t wcslen( const wchar_t * string) _PDCLIB_nothrow; wchar_t *wcscpy( wchar_t * _PDCLIB_restrict dest, - const wchar_t * _PDCLIB_restrict src); + const wchar_t * _PDCLIB_restrict src) _PDCLIB_nothrow; _PDCLIB_END_EXTERN_C #endif