mirror of
https://git.zap.org.au/git/trader.git
synced 2025-02-02 15:08:13 -05:00
Add global (wide-character) currency and numeric variables
Add the variables decimal_point, thousands_sep, currency_symbol, mon_decimal_point and mon_thousands_sep, with code to initialise them.
This commit is contained in:
parent
3a4b014e64
commit
b951b21894
33
src/utils.c
33
src/utils.c
@ -38,6 +38,13 @@
|
|||||||
// Global copy, suitably modified, of localeconv() information
|
// Global copy, suitably modified, of localeconv() information
|
||||||
struct lconv lconvinfo;
|
struct lconv lconvinfo;
|
||||||
|
|
||||||
|
// localeconv() information, converted to wide strings
|
||||||
|
wchar_t *decimal_point; // Locale's radix character
|
||||||
|
wchar_t *thousands_sep; // Locale's thousands separator
|
||||||
|
wchar_t *currency_symbol; // Local currency symbol
|
||||||
|
wchar_t *mon_decimal_point; // Local monetary radix character
|
||||||
|
wchar_t *mon_thousands_sep; // Local monetary thousands separator
|
||||||
|
|
||||||
|
|
||||||
/************************************************************************
|
/************************************************************************
|
||||||
* Module-specific constants and variable definitions *
|
* Module-specific constants and variable definitions *
|
||||||
@ -303,6 +310,7 @@ void init_locale (void)
|
|||||||
{
|
{
|
||||||
char *cur, *cloc;
|
char *cur, *cloc;
|
||||||
struct lconv *lc;
|
struct lconv *lc;
|
||||||
|
wchar_t *buf;
|
||||||
|
|
||||||
|
|
||||||
cur = xstrdup(setlocale(LC_MONETARY, NULL));
|
cur = xstrdup(setlocale(LC_MONETARY, NULL));
|
||||||
@ -329,6 +337,27 @@ void init_locale (void)
|
|||||||
lconvinfo.p_sep_by_space = MOD_POSIX_P_SEP_BY_SPACE;
|
lconvinfo.p_sep_by_space = MOD_POSIX_P_SEP_BY_SPACE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Convert localeconv() information to wide strings
|
||||||
|
|
||||||
|
buf = xmalloc(BUFSIZE * sizeof(wchar_t));
|
||||||
|
|
||||||
|
xmbstowcs(buf, lconvinfo.decimal_point, BUFSIZE);
|
||||||
|
decimal_point = xwcsdup(buf);
|
||||||
|
|
||||||
|
xmbstowcs(buf, lconvinfo.thousands_sep, BUFSIZE);
|
||||||
|
thousands_sep = xwcsdup(buf);
|
||||||
|
|
||||||
|
xmbstowcs(buf, lconvinfo.currency_symbol, BUFSIZE);
|
||||||
|
currency_symbol = xwcsdup(buf);
|
||||||
|
|
||||||
|
xmbstowcs(buf, lconvinfo.mon_decimal_point, BUFSIZE);
|
||||||
|
mon_decimal_point = xwcsdup(buf);
|
||||||
|
|
||||||
|
xmbstowcs(buf, lconvinfo.mon_thousands_sep, BUFSIZE);
|
||||||
|
mon_thousands_sep = xwcsdup(buf);
|
||||||
|
|
||||||
|
free(buf);
|
||||||
|
|
||||||
setlocale(LC_MONETARY, cur);
|
setlocale(LC_MONETARY, cur);
|
||||||
free(cur);
|
free(cur);
|
||||||
}
|
}
|
||||||
@ -555,7 +584,7 @@ size_t xmbstowcs (wchar_t *restrict dest, const char *restrict src, size_t len)
|
|||||||
}
|
}
|
||||||
} else if (p != NULL) {
|
} else if (p != NULL) {
|
||||||
// Multibyte string was too long: truncate dest
|
// Multibyte string was too long: truncate dest
|
||||||
dest[len - 1] = '\0';
|
dest[len - 1] = L'\0';
|
||||||
n--;
|
n--;
|
||||||
break;
|
break;
|
||||||
} else {
|
} else {
|
||||||
@ -590,7 +619,7 @@ size_t xwcrtomb (char *restrict dest, wchar_t wc, mbstate_t *restrict mbstate)
|
|||||||
Hence, restore the original, try to store an ending shift
|
Hence, restore the original, try to store an ending shift
|
||||||
sequence, then EILSEQ_REPL. */
|
sequence, then EILSEQ_REPL. */
|
||||||
memcpy(&mbcopy, mbstate, sizeof(mbcopy));
|
memcpy(&mbcopy, mbstate, sizeof(mbcopy));
|
||||||
if ((n = wcrtomb(dest, '\0', &mbcopy)) == (size_t) -1) {
|
if ((n = wcrtomb(dest, L'\0', &mbcopy)) == (size_t) -1) {
|
||||||
errno_exit(_("xwcrtomb: NUL"));
|
errno_exit(_("xwcrtomb: NUL"));
|
||||||
}
|
}
|
||||||
dest[n] = EILSEQ_REPL;
|
dest[n] = EILSEQ_REPL;
|
||||||
|
19
src/utils.h
19
src/utils.h
@ -43,6 +43,7 @@
|
|||||||
|
|
||||||
|
|
||||||
#define EILSEQ_REPL '?' // Illegal character sequence replacement
|
#define EILSEQ_REPL '?' // Illegal character sequence replacement
|
||||||
|
#define EILSEQ_REPL_WC L'?' // ... wide character version
|
||||||
|
|
||||||
|
|
||||||
/************************************************************************
|
/************************************************************************
|
||||||
@ -52,6 +53,13 @@
|
|||||||
// Global copy, suitably modified, of localeconv() information
|
// Global copy, suitably modified, of localeconv() information
|
||||||
extern struct lconv lconvinfo;
|
extern struct lconv lconvinfo;
|
||||||
|
|
||||||
|
// localeconv() information, converted to wide strings
|
||||||
|
extern wchar_t *decimal_point; // Locale's radix character
|
||||||
|
extern wchar_t *thousands_sep; // Locale's thousands separator
|
||||||
|
extern wchar_t *currency_symbol; // Local currency symbol
|
||||||
|
extern wchar_t *mon_decimal_point; // Local monetary radix character
|
||||||
|
extern wchar_t *mon_thousands_sep; // Local monetary thousands separator
|
||||||
|
|
||||||
|
|
||||||
/************************************************************************
|
/************************************************************************
|
||||||
* Initialisation and environment function prototypes *
|
* Initialisation and environment function prototypes *
|
||||||
@ -229,11 +237,12 @@ extern int randi (int limit);
|
|||||||
Parameters: (none)
|
Parameters: (none)
|
||||||
Returns: (nothing)
|
Returns: (nothing)
|
||||||
|
|
||||||
This function initialises the global variable lconvinfo with values
|
This function initialises the global variable lconvinfo, as well as
|
||||||
suitable for this program. In particular, if the POSIX or C locale is
|
decimal_point, thousands_sep, currency_symbol, mon_decimal_point and
|
||||||
in effect, the currency_symbol and frac_digits members are updated to
|
mon_thousands_sep, with values suitable for this program. In
|
||||||
be something reasonable. This function must be called before using
|
particular, if the POSIX or C locale is in effect, the currency_symbol
|
||||||
localeconf_info.
|
and frac_digits members of lconvinfo are updated to be something
|
||||||
|
reasonable. This function must be called before using localeconf_info.
|
||||||
*/
|
*/
|
||||||
extern void init_locale (void);
|
extern void init_locale (void);
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user