Re: setlocale() always returns "C"
- From: yogeshmk <yogesh.m.kulkarni@xxxxxxxxx>
- Date: Sun, 10 Aug 2008 06:03:35 -0700 (PDT)
On Aug 10, 5:51 pm, yogeshmk <yogesh.m.kulka...@xxxxxxxxx> wrote:
On Aug 10, 5:12 pm, Huibert Bol <huibert....@xxxxxxxxxxx> wrote:
yogeshmk wrote:
I'm writing an application which is required to function with many
languages and also compile on Linux & windows. Here's how I find the
locale ..
# include <stdio.h>
# include <locale.h>
int
main(void)
{
unsigned char* loc = NULL;
loc = setlocale(LC_MESSAGES, NULL);
puts (loc);
return 0;
}
I've ran this piece of code on RedHat linux (en_US.UTF-8), Windows XP
(??) and Ubuntu linux (on which the `locale` *command* returns
"en_IN.UTF-8" which is correct). However, I observe that the function
always returns "C" as the locale.
Q1. What explains this behaviour of 'setlocale()'
Q2. Any other way to find out the currently set language on the
computer?
A program's locale at startup will always be "C", so that's all you're going
to get without explicitly setting it to something else.
To change the current locale you want to use something like:
setlocale(LC_MESSAGES, "");
- Huibert.
--
Okay... really not something I needed to see. --Raven
Ummm....I was under the impression that 'setlocale()' with second
param NULL will query and return the current locale of the OS.
If what you say is right, then I have to set the locale myself, but
the question is which? I don't know whether my program is running on a
computer with spanish locale settings so I need to print "Hola Terra!"
instead of "Hello World!"?
--
~yogesh kulkarni.
I anyway tried the setlocale() call again.
loc = setlocale(LC_ALL /* any LC_* catagories are ok here */, "" /
*instead of NULL */);
returns me the current locale set on my system.
Thanks for the reply.
cheers!
--
~ yogesh kulkarni.
.
- References:
- setlocale() always returns "C"
- From: yogeshmk
- Re: setlocale() always returns "C"
- From: Huibert Bol
- Re: setlocale() always returns "C"
- From: yogeshmk
- setlocale() always returns "C"
- Prev by Date: Re: setlocale() always returns "C"
- Next by Date: Re: Variable naming conventions.
- Previous by thread: Re: setlocale() always returns "C"
- Next by thread: Re: setlocale() always returns "C"
- Index(es):
Relevant Pages
|