Displaying 4 results from an estimated 4 matches for "5fb311a".
Did you mean:
5f33a1a
2016 Jun 27
0
Re: [PATCH] RFC: OCaml tools: add and use a Getopt module
...o use
> + [--help], and then the program exists. *)
> +
> +val parse :
> + (keys * spec * doc) list -> ?anon_fun:anon_fun -> usage_msg -> unit
> +(** Call {!Getopt.parse_argv} on [Sys.argv]. *)
> diff --git a/resize/Makefile.am b/resize/Makefile.am
> index da5d42d..5fb311a 100644
> --- a/resize/Makefile.am
> +++ b/resize/Makefile.am
> @@ -32,6 +32,7 @@ SOURCES_ML = \
> SOURCES_C = \
> ../mllib/dev_t-c.c \
> ../mllib/fsync-c.c \
> + ../mllib/getopt-c.c \
> ../fish/progress.c \
> ../mllib/progress-c.c \
> ../fish/uri.c \
> @@...
2016 Jun 24
2
[PATCH] RFC: OCaml tools: add and use a Getopt module
...printed, together with a pointer to use
+ [--help], and then the program exists. *)
+
+val parse :
+ (keys * spec * doc) list -> ?anon_fun:anon_fun -> usage_msg -> unit
+(** Call {!Getopt.parse_argv} on [Sys.argv]. *)
diff --git a/resize/Makefile.am b/resize/Makefile.am
index da5d42d..5fb311a 100644
--- a/resize/Makefile.am
+++ b/resize/Makefile.am
@@ -32,6 +32,7 @@ SOURCES_ML = \
SOURCES_C = \
../mllib/dev_t-c.c \
../mllib/fsync-c.c \
+ ../mllib/getopt-c.c \
../fish/progress.c \
../mllib/progress-c.c \
../fish/uri.c \
@@ -61,6 +62,7 @@ BOBJECTS = \
$(top_builddir)/mllib/gu...
2016 Jul 11
2
[PATCH v2] OCaml tools: add and use a Getopt module
...printed, together with a pointer to use
+ [--help], and then the program exists. *)
+
+val parse :
+ (keys * spec * doc) list -> ?anon_fun:anon_fun -> usage_msg -> unit
+(** Call {!Getopt.parse_argv} on [Sys.argv]. *)
diff --git a/resize/Makefile.am b/resize/Makefile.am
index da5d42d..5fb311a 100644
--- a/resize/Makefile.am
+++ b/resize/Makefile.am
@@ -32,6 +32,7 @@ SOURCES_ML = \
SOURCES_C = \
../mllib/dev_t-c.c \
../mllib/fsync-c.c \
+ ../mllib/getopt-c.c \
../fish/progress.c \
../mllib/progress-c.c \
../fish/uri.c \
@@ -61,6 +62,7 @@ BOBJECTS = \
$(top_builddir)/mllib/gu...
2016 Jul 13
3
[PATCH v3 1/2] OCaml tools: add and use a Getopt module
...[Set_int],
+ an error message is printed, together with a pointer to use
+ [--help], and then the program exists with a non-zero exit
+ value. *)
+
+val parse : t -> unit
+(** Call {!Getopt.parse_argv} on [Sys.argv]. *)
diff --git a/resize/Makefile.am b/resize/Makefile.am
index da5d42d..5fb311a 100644
--- a/resize/Makefile.am
+++ b/resize/Makefile.am
@@ -32,6 +32,7 @@ SOURCES_ML = \
SOURCES_C = \
../mllib/dev_t-c.c \
../mllib/fsync-c.c \
+ ../mllib/getopt-c.c \
../fish/progress.c \
../mllib/progress-c.c \
../fish/uri.c \
@@ -61,6 +62,7 @@ BOBJECTS = \
$(top_builddir)/mllib/gu...