mbsinit.c raw

   1  #include <wchar.h>
   2  
   3  int mbsinit(const mbstate_t *st)
   4  {
   5  	return !st || !*(unsigned *)st;
   6  }
   7