/* partial mbrtowc implementation: - doesn't change *ps - s should NOT be NULL */ #include "dictP.h" #if HAVE_WCHAR_H #include #endif #if HAVE_WCTYPE_H #include #endif #include int wctomb__ (char *s, wchar_t wc) { return (int) wcrtomb__ (s, wc, NULL); }