1
0
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:
John Zaitseff 2021-01-14 12:04:48 +11:00
parent c525bc266f
commit 82d460fe31
3 changed files with 5 additions and 5 deletions

View File

@ -393,7 +393,7 @@ void init_program (void)
init_rand(); init_rand();
// Initialise locale-specific variables // Initialise locale-specific variables
init_locale(); init_locale_vars();
// Initialise the terminal display // Initialise the terminal display
init_screen(); init_screen();

View File

@ -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; char *cur, *cloc;
struct lconv *lc; struct lconv *lc;

View File

@ -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) Parameters: (none)
Returns: (nothing) Returns: (nothing)
@ -241,7 +241,7 @@ extern int randi (int limit);
and frac_digits members of lconvinfo are updated to be something and frac_digits members of lconvinfo are updated to be something
reasonable. This function must be called before using localeconf_info. reasonable. This function must be called before using localeconf_info.
*/ */
extern void init_locale (void); extern void init_locale_vars (void);
/* /*