diff options
author | Sébastien Dailly <sebastien@chimrod.com> | 2021-09-03 15:15:00 +0200 |
---|---|---|
committer | Sébastien Dailly <sebastien@chimrod.com> | 2021-09-03 15:15:00 +0200 |
commit | 48dc04c3b9afe19207d15b873452129d9c2b3b4c (patch) | |
tree | 2c46df86808aa738a28ce95d5b62a58ffaf12459 /src/lib/sounds/repr.mli | |
parent | ad45e1b397ba995dc0222057a8dc1d0c38970c4f (diff) |
Continued refactoring
Diffstat (limited to 'src/lib/sounds/repr.mli')
-rw-r--r-- | src/lib/sounds/repr.mli | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/src/lib/sounds/repr.mli b/src/lib/sounds/repr.mli new file mode 100644 index 0000000..3e2a9c7 --- /dev/null +++ b/src/lib/sounds/repr.mli @@ -0,0 +1,45 @@ +type t = string + +val a : t +val a_nasal : t + +val e_opened : t +val e_closed : t +val schwa : t + +val eu : t + +val o : t +val o_nasal : t + +val i : t +val i_nasal : t + +val y : t +val y_nasal : t + +val u : t +val p : t +val b : t +val t : t +val d : t +val k : t +val g : t +val f : t +val v : t +val ch : t +val j : t +val s : t +val z : t +val m : t +val n : t +val l : t +val r : t + +val semi_voyel_w : t + +val semi_voyel_y : t + +val muted : t -> t + +val diphtongue : t -> t -> t |