4 * Functions and types for localization (ie. changing the appearance of
5 * output based on the standards of a certain country).
7 * This file is part of the Mingw32 package.
10 * Created by Colin Peters <colin@bird.fu.is.saga-u.ac.jp>
12 * THIS SOFTWARE IS NOT COPYRIGHTED
14 * This source code is offered for use in the public domain. You may
15 * use, modify or distribute it freely.
17 * This code is distributed in the hope that it will be useful but
18 * WITHOUT ANY WARRANTY. ALL WARRANTIES, EXPRESS OR IMPLIED ARE HEREBY
19 * DISCLAIMED. This includes but is not limited to warranties of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
24 * $Date: 2005/04/17 13:14:29 $
31 /* All the headers include this file. */
35 * NOTE: I have tried to test this, but I am limited by my knowledge of
36 * locale issues. The structure does not bomb if you look at the
37 * values, and 'decimal_point' even seems to be correct. But the
38 * rest of the values are, by default, not particularly useful
39 * (read meaningless and not related to the international settings
50 #define LC_MAX LC_TIME
55 * The structure returned by 'localeconv'.
62 char* int_curr_symbol
;
63 char* currency_symbol
;
64 char* mon_decimal_point
;
65 char* mon_thousands_sep
;
83 char* setlocale (int, const char*);
84 struct lconv
* localeconv (void);
86 #ifndef _WLOCALE_DEFINED /* also declared in wchar.h */
87 # define __need_wchar_t
89 wchar_t* _wsetlocale(int, const wchar_t*);
90 # define _WLOCALE_DEFINED
91 #endif /* ndef _WLOCALE_DEFINED */
97 #endif /* Not RC_INVOKED */
99 #endif /* Not _LOCALE_H_ */