mirror of
https://git.zap.org.au/git/trader.git
synced 2024-11-03 17:27:29 -05:00
Rename init_locale() to init_locale_vars()
This commit is contained in:
parent
c525bc266f
commit
82d460fe31
@ -393,7 +393,7 @@ void init_program (void)
|
||||
init_rand();
|
||||
|
||||
// Initialise locale-specific variables
|
||||
init_locale();
|
||||
init_locale_vars();
|
||||
|
||||
// Initialise the terminal display
|
||||
init_screen();
|
||||
|
@ -574,9 +574,9 @@ extern int randi (int limit)
|
||||
|
||||
|
||||
/***********************************************************************/
|
||||
// init_locale: Initialise locale-specific variables
|
||||
// init_locale_vars: Initialise locale-specific variables
|
||||
|
||||
void init_locale (void)
|
||||
void init_locale_vars (void)
|
||||
{
|
||||
char *cur, *cloc;
|
||||
struct lconv *lc;
|
||||
|
@ -230,7 +230,7 @@ extern int randi (int limit);
|
||||
************************************************************************/
|
||||
|
||||
/*
|
||||
Function: init_locale - Initialise locale-specific variables
|
||||
Function: init_locale_vars - Initialise locale-specific variables
|
||||
Parameters: (none)
|
||||
Returns: (nothing)
|
||||
|
||||
@ -241,7 +241,7 @@ extern int randi (int limit);
|
||||
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_vars (void);
|
||||
|
||||
|
||||
/*
|
||||
|
Loading…
Reference in New Issue
Block a user