forked from haguenau/wyrd
-
Notifications
You must be signed in to change notification settings - Fork 2
/
locale.ml
49 lines (40 loc) · 1.64 KB
/
locale.ml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
(* Wyrd -- a curses-based front-end for Remind
* Copyright (C) 2005, 2006, 2007, 2008, 2010, 2011-2013 Paul Pelzl
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License, Version 2,
* as published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
* Bug reports can be entered at http://bugs.launchpad.net/wyrd .
* For anything else, feel free to contact Paul Pelzl at <pelzlpj@gmail.com>.
*)
(* OCaml binding for setlocale(), required to kick ncurses into
* properly rendering non-ASCII chars. *)
type t = LC_ALL | LC_COLLATE | LC_CTYPE | LC_MONETARY |
LC_NUMERIC | LC_TIME | LC_MESSAGES |
LC_UNDEFINED of int
(* Binds to C library setlocale() *)
external setlocale_int : int -> string -> string = "ml_setlocale"
(* Provide a more OCamlish interface *)
let setlocale (category : t) (param : string) =
let int_category =
match category with
| LC_ALL -> 0
| LC_COLLATE -> 1
| LC_CTYPE -> 2
| LC_MONETARY -> 3
| LC_NUMERIC -> 4
| LC_TIME -> 5
| LC_MESSAGES -> 6
| LC_UNDEFINED i -> i
in
setlocale_int int_category param