1 /* winduni.c -- unicode support for the windres program.
2 Copyright 1997, 1998, 2000, 2001, 2003, 2007
3 Free Software Foundation, Inc.
4 Written by Ian Lance Taylor, Cygnus Support.
6 This file is part of GNU Binutils.
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2 of the License, or
11 (at your option) any later version.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program; if not, write to the Free Software
20 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA
23 /* This file contains unicode support routines for the windres
24 program. Ideally, we would have generic unicode support which
25 would work on all systems. However, we don't. Instead, on a
26 Windows host, we are prepared to call some Windows routines. This
27 means that we will generate different output on Windows and Unix
28 hosts, but that seems better than not really supporting unicode at
34 #include "safe-ctype.h"
40 /* Convert an ASCII string to a unicode string. We just copy it,
41 expanding chars to shorts, rather than doing something intelligent. */
44 unicode_from_ascii (int *length
, unichar
**unicode
, const char *ascii
)
52 *unicode
= ((unichar
*) res_alloc ((len
+ 1) * sizeof (unichar
)));
53 for (s
= ascii
, w
= *unicode
; *s
!= '\0'; s
++, w
++)
57 /* We use MultiByteToWideChar rather than strlen to get the unicode
58 string length to allow multibyte "ascii" chars. The value returned
59 by this function includes the trailing '\0'. */
60 len
= MultiByteToWideChar (CP_ACP
, 0, ascii
, -1, NULL
, 0);
63 *unicode
= ((unichar
*) res_alloc (len
* sizeof (unichar
)));
64 MultiByteToWideChar (CP_ACP
, 0, ascii
, -1, *unicode
, len
);
66 /* Discount the trailing '/0'. If MultiByteToWideChar failed,
67 this will set *length to -1. */
75 /* Print the unicode string UNICODE to the file E. LENGTH is the
76 number of characters to print, or -1 if we should print until the
77 end of the string. FIXME: On a Windows host, we should be calling
78 some Windows function, probably WideCharToMultiByte. */
81 unicode_print (FILE *e
, const unichar
*unicode
, int length
)
94 if (ch
== 0 && length
< 0)
99 if ((ch
& 0x7f) == ch
)
103 else if (ISPRINT (ch
))
138 fprintf (e
, "\\%03o", (unsigned int) ch
);
143 else if ((ch
& 0xff) == ch
)
144 fprintf (e
, "\\%03o", (unsigned int) ch
);
146 fprintf (e
, "\\x%x", (unsigned int) ch
);
This page took 0.037327 seconds and 5 git commands to generate.