1 2 #ifndef NOSER_H 3 #define NOSER_H 4 5 #include <stdlib.h> 6 7 size_t __ctype_get_mb_cur_max(void); 8 size_t mbstowcs(wchar_t *pwcs, const char *s, size_t n); 9 size_t wcstombs(char *s, const wchar_t *pwcs, size_t n); 10 11 #endif 12