X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=includes%2Fwchar.h;h=59955b3d80b7a3cb5fa0d6d72123d8d9ecc4cf50;hb=847a34bc4d47592ba53cf0b5b860598a88bc8eca;hp=eab2984b0e297539c88f1c87d59a1664339d11b0;hpb=217a2f477ad6dbbac816981589ee2f5a81dffd67;p=pdclib.old 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