You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

38 lines
936 B

(*
* Copyright (c) 2018-present, Facebook, Inc.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*)
open! IStd
let utf8 =
let rec from_vars = function
| [] ->
false
| var :: otherwise -> (
match Sys.getenv var with
| Some ("C" | "POSIX") ->
false
| None | Some "" ->
from_vars otherwise
| Some lc ->
String.is_suffix lc ~suffix:"UTF-8" )
in
from_vars ["LC_ALL"; "LC_CTYPE"; "LANG"]
let dot_operator = if utf8 then "" else "."
let multiplication_sign = if utf8 then "×" else "x"
let right_tack = if utf8 then "" else "|-"
let superscript_digits =
if utf8 then ("", [|""; "¹"; "²"; "³"; ""; ""; ""; ""; ""; ""|])
else ("^", [|"0"; "1"; "2"; "3"; "4"; "5"; "6"; "7"; "8"; "9"|])
let leftwards_double_arrow = if utf8 then "" else "<="