Page 1 of 1

Value of LC_TIME Constant

Posted: Tue Mar 24, 2020 9:28 am
by QuimV
I need to know the value of the constant LC_TIME in order to use it in the setlocale () function
Does anyone know where I can find this information?
Thank you

Re: Value of LC_TIME Constant

Posted: Tue Mar 24, 2020 10:04 am
by mk-soft
Found locale.h on macOS :wink:
#define LC_ALL 0
#define LC_COLLATE 1
#define LC_CTYPE 2
#define LC_MONETARY 3
#define LC_NUMERIC 4
#define LC_TIME 5
#define LC_MESSAGES 6

Re: Value of LC_TIME Constant

Posted: Tue Mar 24, 2020 10:15 am
by QuimV
:D thanks a lot @mk-soft