Displaying 4 results from an estimated 4 matches for "f18e238".
Did you mean:
f187238b
2016 Jun 27
0
Re: [PATCH] RFC: OCaml tools: add and use a Getopt module
...er(1).
> ")
> prog in
> - Arg.parse argspec anon_fun usage_msg;
> + Getopt.parse argspec ~anon_fun usage_msg;
>
> (* Dereference options. *)
> let args = List.rev !args in
> diff --git a/customize/Makefile.am b/customize/Makefile.am
> index de3d7e0..f18e238 100644
> --- a/customize/Makefile.am
> +++ b/customize/Makefile.am
> @@ -70,6 +70,7 @@ SOURCES_C = \
> ../fish/file-edit.c \
> ../fish/file-edit.h \
> ../mllib/dev_t-c.c \
> + ../mllib/getopt-c.c \
> ../mllib/uri-c.c \
> crypt-c.c \
> perl_edit-c.c
> @@...
2016 Jun 24
2
[PATCH] RFC: OCaml tools: add and use a Getopt module
...led help please
read the man page virt-builder(1).
")
prog in
- Arg.parse argspec anon_fun usage_msg;
+ Getopt.parse argspec ~anon_fun usage_msg;
(* Dereference options. *)
let args = List.rev !args in
diff --git a/customize/Makefile.am b/customize/Makefile.am
index de3d7e0..f18e238 100644
--- a/customize/Makefile.am
+++ b/customize/Makefile.am
@@ -70,6 +70,7 @@ SOURCES_C = \
../fish/file-edit.c \
../fish/file-edit.h \
../mllib/dev_t-c.c \
+ ../mllib/getopt-c.c \
../mllib/uri-c.c \
crypt-c.c \
perl_edit-c.c
@@ -96,6 +97,7 @@ BOBJECTS = \
$(top_builddir)/mllib/gue...
2016 Jul 11
2
[PATCH v2] OCaml tools: add and use a Getopt module
...led help please
read the man page virt-builder(1).
")
prog in
- Arg.parse argspec anon_fun usage_msg;
+ Getopt.parse argspec ~anon_fun usage_msg;
(* Dereference options. *)
let args = List.rev !args in
diff --git a/customize/Makefile.am b/customize/Makefile.am
index de3d7e0..f18e238 100644
--- a/customize/Makefile.am
+++ b/customize/Makefile.am
@@ -70,6 +70,7 @@ SOURCES_C = \
../fish/file-edit.c \
../fish/file-edit.h \
../mllib/dev_t-c.c \
+ ../mllib/getopt-c.c \
../mllib/uri-c.c \
crypt-c.c \
perl_edit-c.c
@@ -96,6 +97,7 @@ BOBJECTS = \
$(top_builddir)/mllib/gue...
2016 Jul 13
3
[PATCH v3 1/2] OCaml tools: add and use a Getopt module
...ot;)
prog in
- Arg.parse argspec anon_fun usage_msg;
+ let opthandle = create_standard_options argspec ~anon_fun usage_msg in
+ Getopt.parse opthandle;
(* Dereference options. *)
let args = List.rev !args in
diff --git a/customize/Makefile.am b/customize/Makefile.am
index de3d7e0..f18e238 100644
--- a/customize/Makefile.am
+++ b/customize/Makefile.am
@@ -70,6 +70,7 @@ SOURCES_C = \
../fish/file-edit.c \
../fish/file-edit.h \
../mllib/dev_t-c.c \
+ ../mllib/getopt-c.c \
../mllib/uri-c.c \
crypt-c.c \
perl_edit-c.c
@@ -96,6 +97,7 @@ BOBJECTS = \
$(top_builddir)/mllib/gue...