2 Copyright © 1995-2001, The AROS Development Team. All rights reserved.
5 Desc: SetLocale CLI command
9 #include <exec/types.h>
11 #include <libraries/locale.h>
12 #include <proto/exec.h>
13 #include <proto/dos.h>
14 #include <proto/locale.h>
16 int main(int argc
, char **av
)
22 PrintFault(ERROR_REQUIRED_ARG_MISSING
, "SetLocale");
26 new = OpenLocale(av
[1]);
27 FPuts(Output(), "Locale opened\n");
30 struct Locale
*old
= NULL
;
31 old
= LocalePrefsUpdate(new);
32 FPuts(Output(), "Locale set\n");
38 PrintFault(IoErr(), "SetLocale");