1 /* 2 ** Copyright 2011, Oliver Tappe, zooey@hirschkaefer.de. All rights reserved. 3 ** Distributed under the terms of the MIT License. 4 */ 5 6 #include <wchar_private.h> 7 8 9 size_t __wcstombs(char * s,const wchar_t * pwcs,size_t n)10__wcstombs(char* s, const wchar_t* pwcs, size_t n) 11 { 12 static mbstate_t internalMbState; 13 14 return __wcsrtombs(s, &pwcs, n, &internalMbState); 15 } 16 17 18 B_DEFINE_WEAK_ALIAS(__wcstombs, wcstombs); 19