diff options
Diffstat (limited to 'stdlib')
-rw-r--r-- | stdlib/mbstowcs.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/stdlib/mbstowcs.c b/stdlib/mbstowcs.c index 5bc77a2ea2..d8b91a73de 100644 --- a/stdlib/mbstowcs.c +++ b/stdlib/mbstowcs.c @@ -22,12 +22,7 @@ /* Convert the string of multibyte characters in S to `wchar_t's in PWCS, writing no more than N. Return the number written, - or (size_t) -1 if an invalid multibyte character is encountered. - - Attention: this function should NEVER be intentionally used. - The interface is completely stupid. The state is shared between - all conversion functions. You should use instead the restartable - version `mbsrtowcs'. */ + or (size_t) -1 if an invalid multibyte character is encountered. */ size_t mbstowcs (wchar_t *pwcs, const char *s, size_t n) { |