From fda095ccda51b139d3bf42476fb03e3a9ea1e00e Mon Sep 17 00:00:00 2001 From: Alan Carvalho de Assis Date: Wed, 8 Mar 2017 12:16:56 -0600 Subject: [PATCH] Add mbtowc and wctomb to C++ std namespace --- include/cxx/cwchar | 3 +++ 1 file changed, 3 insertions(+) diff --git a/include/cxx/cwchar b/include/cxx/cwchar index 52ced526991..b33b0477b8c 100755 --- a/include/cxx/cwchar +++ b/include/cxx/cwchar @@ -41,6 +41,7 @@ //*************************************************************************** #include +#include //*************************************************************************** // 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;