X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=lib%2Fmbsinit.c;h=df4bcd182ac98961845bf6bd2acd6f25d1f699e3;hb=7ef6c64e210ac0979d7e8ac69bc5b5208c2405ab;hp=869c0a6ab9e542c372a17282e1ee70df124f0ea6;hpb=a38e4bbf37c4a77ea65f548dfcf590cf23e73d7e;p=gnulib.git diff --git a/lib/mbsinit.c b/lib/mbsinit.c index 869c0a6ab..df4bcd182 100644 --- a/lib/mbsinit.c +++ b/lib/mbsinit.c @@ -1,5 +1,5 @@ /* Test for initial conversion state. - Copyright (C) 2008-2011 Free Software Foundation, Inc. + Copyright (C) 2008-2014 Free Software Foundation, Inc. Written by Bruno Haible , 2008. This program is free software: you can redistribute it and/or modify @@ -22,6 +22,18 @@ #include "verify.h" +#if (defined _WIN32 || defined __WIN32__) && !defined __CYGWIN__ + +/* On native Windows, 'mbstate_t' is defined as 'int'. */ + +int +mbsinit (const mbstate_t *ps) +{ + return ps == NULL || *ps == 0; +} + +#else + /* Platforms that lack mbsinit() also lack mbrlen(), mbrtowc(), mbsrtowcs() and wcrtomb(), wcsrtombs(). We assume that @@ -45,3 +57,5 @@ mbsinit (const mbstate_t *ps) return pstate == NULL || pstate[0] == 0; } + +#endif