Add mbtowc and wctomb to C++ std namespace

This commit is contained in:
Alan Carvalho de Assis 2017-03-08 12:16:56 -06:00 committed by Gregory Nutt
parent 05a288f2e1
commit fda095ccda

View File

@ -41,6 +41,7 @@
//***************************************************************************
#include <wchar.h>
#include <stdlib.h>
//***************************************************************************
// Namespace
@ -79,6 +80,7 @@ namespace std
using ::mbrlen;
using ::mbrtowc;
using ::mbsrtowcs;
using ::mbtowc;
using ::putwc;
using ::putwchar;
using ::swprintf;
@ -116,6 +118,7 @@ namespace std
using ::wcswidth;
using ::wcsxfrm;
using ::wctob;
using ::wctomb;
using ::wctype;
using ::wcwidth;
using ::wmemchr;