Mercurial > hg > octave-shane > gnulib-hg
annotate lib/wcsrtombs.c @ 17632:86af85d364e1 default tip
unistd: port readlink to Mac OS X 10.3.9
* lib/unistd.in.h (_GL_INCLUDING_UNISTD_H): New macro, to work
around self-include problem in Mac OS X 10.3.9 when combined with
readlink module. Problem reported by Klaus Zietler in
<http://bugs.gnu.org/16825>.
author | Paul Eggert <eggert@penguin.cs.ucla.edu> |
---|---|
date | Tue, 25 Feb 2014 11:16:27 -0800 (2014-02-25) |
parents | 344018b6e5d7 |
children |
rev | line source |
---|---|
10941 | 1 /* Convert wide string to string. |
17587 | 2 Copyright (C) 2008, 2010-2014 Free Software Foundation, Inc. |
10941 | 3 Written by Bruno Haible <bruno@clisp.org>, 2008. |
4 | |
5 This program is free software: you can redistribute it and/or modify | |
6 it under the terms of the GNU General Public License as published by | |
7 the Free Software Foundation; either version 3 of the License, or | |
8 (at your option) any later version. | |
9 | |
10 This program is distributed in the hope that it will be useful, | |
11 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
13 GNU General Public License for more details. | |
14 | |
15 You should have received a copy of the GNU General Public License | |
16 along with this program. If not, see <http://www.gnu.org/licenses/>. */ | |
17 | |
18 #include <config.h> | |
19 | |
20 /* Specification. */ | |
21 #include <wchar.h> | |
22 | |
10943 | 23 extern mbstate_t _gl_wcsrtombs_state; |
10941 | 24 |
13962
d08e3bdd07f9
wcsrtombs: Don't confuse mbstate_t with rpl_mbstate_t.
Bruno Haible <bruno@clisp.org>
parents:
12559
diff
changeset
|
25 #if HAVE_WCSRTOMBS && !WCSRTOMBS_TERMINATION_BUG && !defined GNULIB_defined_mbstate_t |
10941 | 26 /* Override the system's wcsrtombs() function. */ |
27 | |
28 # undef wcsrtombs | |
29 | |
30 size_t | |
31 rpl_wcsrtombs (char *dest, const wchar_t **srcp, size_t len, mbstate_t *ps) | |
32 { | |
33 if (ps == NULL) | |
10943 | 34 ps = &_gl_wcsrtombs_state; |
10941 | 35 # if WCSRTOMBS_NULL_ARG_BUG |
36 if (dest == NULL) | |
37 { | |
38 const wchar_t *temp_src = *srcp; | |
39 | |
14337
72901df54787
wcsrtombs: Work around bug on native Windows.
Bruno Haible <bruno@clisp.org>
parents:
14263
diff
changeset
|
40 return wcsrtombs (NULL, &temp_src, (size_t)-1, ps); |
10941 | 41 } |
42 else | |
43 # endif | |
44 return wcsrtombs (dest, srcp, len, ps); | |
45 } | |
46 | |
47 #else | |
48 /* Implement wcsrtombs on top of wcrtomb(). */ | |
49 | |
50 # include <errno.h> | |
51 # include <stdlib.h> | |
52 # include <string.h> | |
53 | |
14263
72a370719412
wcsrtombs: Prepare for new module wwcsrtombs.
Bruno Haible <bruno@clisp.org>
parents:
14079
diff
changeset
|
54 # include "wcsrtombs-impl.h" |
10941 | 55 |
56 #endif |