aboutsummaryrefslogtreecommitdiff
path: root/bin/args.mli
diff options
context:
space:
mode:
authorChimrod <>2023-10-03 08:23:59 +0200
committerChimrod <>2023-10-03 08:23:59 +0200
commitf21a7b0552f65de232ab75bdd3172c6c182292b1 (patch)
tree223ab29f222699c47cc9eb3e644bd61ba8af53c2 /bin/args.mli
parentb7964befd039c41c63e00ef323f9eb49061c144c (diff)
In windows, do not ask the user before terminating
Diffstat (limited to 'bin/args.mli')
-rw-r--r--bin/args.mli6
1 files changed, 6 insertions, 0 deletions
diff --git a/bin/args.mli b/bin/args.mli
new file mode 100644
index 0000000..1a063fc
--- /dev/null
+++ b/bin/args.mli
@@ -0,0 +1,6 @@
+type filters = { level : Qsp_syntax.Report.level option }
+
+type t = { reset_line : bool; filters : filters; interractive : bool }
+(** All the arguments given from the command line *)
+
+val parse : unit -> string list * t