enum argpar_iter_next_status: assign negative integral values to errors
[argpar.git] / argpar / argpar.h
index 67056c3aa9834d0af631c0cb3a358bef1bdc7a5b..3340d90f593031756a6e8d80f5a704ddff6f89a1 100644 (file)
 
 #include <stdbool.h>
 
-/*
- * argpar is a library which provides facilities for command-line
- * argument parsing.
- *
- * Two APIs are available:
- *
- * Iterator API:
- *     Create a parsing iterator with argpar_iter_create(), then
- *     repeatedly call argpar_iter_next() to access the parsing results,
- *     until one of:
- *
- *     * There are no more arguments.
- *
- *     * The argument parser encounters an error (for example, an
- *       unknown option).
- *
- *     * You need to stop.
- *
- *     This API provides more parsing control than the next one.
- *
- * Single call API:
- *     Call argpar_parse(), which parses the arguments until one of:
- *
- *     * There are no more arguments.
- *
- *     * It encounters an argument parsing error.
- *
- *     argpar_parse() returns a single array of parsing results.
- *
- * Both methods parse the arguments `argv` of which the count is `argc`
- * using the sentinel-terminated (use `ARGPAR_OPT_DESCR_SENTINEL`)
- * option descriptor array `descrs`.
- *
- * argpar considers ALL the elements of `argv`, including the first one,
- * so that you would typically pass `argc - 1` and `&argv[1]` from what
- * main() receives.
- *
- * The argpar parsers support:
- *
- * * Short options without an argument, possibly tied together:
- *
- *       -f -auf -n
- *
- * * Short options with argument:
- *
- *       -b 45 -f/mein/file -xyzhello
- *
- * * Long options without an argument:
- *
- *       --five-guys --burger-king --pizza-hut --subway
- *
- * * Long options with arguments:
- *
- *       --security enable --time=18.56
- *
- * * Non-option arguments (anything else).
- *
- * The argpar parsers don't accept `-` or `--` as arguments. The latter
- * means "end of options" for many command-line tools, but this library
- * is all about keeping the order of the arguments, so it doesn't mean
- * much to put them at the end. This has the side effect that a
- * non-option argument cannot have the form of an option, for example if
- * you need to pass the exact relative path `--component`. In that case,
- * you would need to pass `./--component`. There's no generic way to
- * escape `-` as of this version.
- *
- * Both argpar_iter_create() and argpar_parse() accept duplicate options
- * (they produce one item for each instance).
- *
- * A returned parsing item has the type `const struct argpar_item *`.
- * Get the type (option or non-option) of an item with
- * argpar_item_type(). Each item type has its set of dedicated methods
- * (`argpar_item_opt_` and `argpar_item_non_opt_` prefixes).
- *
- * Both argpar_iter_create() and argpar_parse() produce the items in
- * the same order that the arguments were parsed, including non-option
- * arguments. This means, for example, that for:
- *
- *     --hello --count=23 /path/to/file -ab --type file magie
- *
- * The produced items are, in this order:
- *
- * 1. Option item (`--hello`).
- * 2. Option item (`--count` with argument `23`).
- * 3. Non-option item (`/path/to/file`).
- * 4. Option item (`-a`).
- * 5. Option item (`-b`).
- * 6. Option item (`--type` with argument `file`).
- * 7. Non-option item (`magie`).
- */
+/*!
+@mainpage
 
-/* Sentinel for an option descriptor array */
-#define ARGPAR_OPT_DESCR_SENTINEL      { -1, '\0', NULL, false }
+See the \ref api module.
+
+@addtogroup api argpar API
+@{
+
+argpar is a library which provides an iterator-based API to parse
+command-line arguments.
+
+The argpar parser supports:
+
+<ul>
+  <li>
+    Short options without an argument, possibly tied together:
+
+    @code{.unparsed}
+    -f -auf -n
+    @endcode
+
+  <li>
+    Short options with arguments:
+
+    @code{.unparsed}
+    -b 45 -f/mein/file -xyzhello
+    @endcode
+
+  <li>
+    Long options without an argument:
+
+    @code{.unparsed}
+    --five-guys --burger-king --pizza-hut --subway
+    @endcode
+
+  <li>
+    Long options with arguments (two original arguments or a single
+    one with a <code>=</code> character):
+
+    @code{.unparsed}
+    --security enable --time=18.56
+    @endcode
+
+  <li>
+    Non-option arguments (anything else, including
+    <code>-</code> and <code>\--</code>).
+
+    A non-option argument cannot have the form of an option, for example
+    if you need to pass the exact relative path
+    <code>\--component</code>. In that case, you would need to pass
+    <code>./\--component</code>. There's no generic way to escape
+    <code>-</code> as of this version.
+</ul>
+
+Create a parsing iterator with argpar_iter_create(), then repeatedly
+call argpar_iter_next() to access the parsing results (items), until one
+of:
+
+- There are no more arguments.
+
+- The argument parser encounters an error (for example, an unknown
+  option).
+
+- You need to stop.
+
+argpar_iter_create() accepts duplicate option descriptors in
+\p descrs (argpar_iter_next() produces one item for each
+instance).
+
+A parsing item (the result of argpar_iter_next()) has the type
+#argpar_item.
+
+Get the type (option or non-option) of an item with
+argpar_item_type(). Each item type has its set of dedicated functions
+(\c argpar_item_opt_ and \c argpar_item_non_opt_ prefixes).
+
+argpar_iter_next() produces the items in the same order that it parses
+original arguments, including non-option arguments. This means, for
+example, that for:
+
+@code{.unparsed}
+--hello --count=23 /path/to/file -ab --type file -- magie
+@endcode
+
+argpar_iter_next() produces the following items, in this order:
+
+-# Option item (<code>\--hello</code>).
+-# Option item (<code>\--count</code> with argument <code>23</code>).
+-# Non-option item (<code>/path/to/file</code>).
+-# Option item (<code>-a</code>).
+-# Option item (<code>-b</code>).
+-# Option item (<code>\--type</code> with argument <code>file</code>).
+-# Non-option item (<code>\--</code>).
+-# Non-option item (<code>magie</code>).
+*/
 
 /*
  * If argpar is used in some shared library, we don't want said library
 # define ARGPAR_HIDDEN __attribute__((visibility("hidden")))
 #endif
 
-/* Forward-declaration for the opaque type */
-struct argpar_iter;
-
-/* Option descriptor */
-struct argpar_opt_descr {
-       /* Numeric ID for this option */
-       const int id;
-
-       /* Short option character, or `\0` */
-       const char short_name;
-
-       /* Long option name (without `--`), or `NULL` */
-       const char * const long_name;
+struct argpar_opt_descr;
 
-       /* True if this option has an argument */
-       const bool with_arg;
-};
+/*!
+@name Item API
+@{
+*/
 
-/* Item type */
+/*!
+@brief
+    Type of a parsing item, as returned by argpar_item_type().
+*/
 enum argpar_item_type {
-       /* Option */
+       /// Option
        ARGPAR_ITEM_TYPE_OPT,
 
-       /* Non-option */
+       /// Non-option
        ARGPAR_ITEM_TYPE_NON_OPT,
 };
 
-/* Parsing item, as created by argpar_parse() and argpar_iter_next() */
+/*!
+@struct argpar_item
+
+@brief
+    Opaque parsing item type
+
+argpar_iter_next() sets a pointer to such a type.
+*/
 struct argpar_item;
 
-/*
- * Returns the type of the parsing item `item`.
- */
+/*!
+@brief
+    Returns the type of the parsing item \p item.
+
+@param[in] item
+    Parsing item of which to get the type.
+
+@returns
+    Type of \p item.
+
+@pre
+    \p item is not \c NULL.
+*/
+/// @cond hidden_macro
 ARGPAR_HIDDEN
+/// @endcond
 enum argpar_item_type argpar_item_type(const struct argpar_item *item);
 
-/*
- * Returns the option descriptor of the option parsing item `item`.
- */
+/*!
+@brief
+    Returns the option descriptor of the option parsing item \p item.
+
+@param[in] item
+    Option parsing item of which to get the option descriptor.
+
+@returns
+    Option descriptor of \p item.
+
+@pre
+    \p item is not \c NULL.
+@pre
+    \p item has the type #ARGPAR_ITEM_TYPE_OPT.
+*/
+/// @cond hidden_macro
 ARGPAR_HIDDEN
+/// @endcond
 const struct argpar_opt_descr *argpar_item_opt_descr(
                const struct argpar_item *item);
 
-/*
- * Returns the argument of the option parsing item `item`, or `NULL` if
- * none.
- */
+/*!
+@brief
+    Returns the argument of the option parsing item \p item, or
+    \c NULL if none.
+
+@param[in] item
+    Option parsing item of which to get the argument.
+
+@returns
+    Argument of \p item, or \c NULL if none.
+
+@pre
+    \p item is not \c NULL.
+@pre
+    \p item has the type #ARGPAR_ITEM_TYPE_OPT.
+*/
+/// @cond hidden_macro
 ARGPAR_HIDDEN
+/// @endcond
 const char *argpar_item_opt_arg(const struct argpar_item *item);
 
-/*
- * Returns the complete argument, pointing to one of the entries of the
- * original arguments (`argv`), of the non-option parsing item `item`.
- */
+/*!
+@brief
+    Returns the complete original argument, pointing to one of the
+    entries of the original arguments (in \p argv, as passed to
+    argpar_iter_create()), of the non-option parsing item \p item.
+
+@param[in] item
+    Non-option parsing item of which to get the complete original
+    argument.
+
+@returns
+    Complete original argument of \p item.
+
+@pre
+    \p item is not \c NULL.
+@pre
+    \p item has the type #ARGPAR_ITEM_TYPE_NON_OPT.
+*/
+/// @cond hidden_macro
 ARGPAR_HIDDEN
+/// @endcond
 const char *argpar_item_non_opt_arg(const struct argpar_item *item);
 
-/*
- * Returns the original index, within ALL the original arguments
- * (`argv`), of the non-option parsing item `item`.
- */
+/*!
+@brief
+    Returns the index, within \em all the original arguments (in
+    \p argv, as passed to argpar_iter_create()), of the non-option
+    parsing item \p item.
+
+For example, with the following command line (all options have no
+argument):
+
+@code{.unparsed}
+-f -m meow --jus mix --kilo
+@endcode
+
+The original argument index of \c meow is&nbsp;2 while the original
+argument index of \c mix is&nbsp;4.
+
+@param[in] item
+    Non-option parsing item of which to get the original argument index.
+
+@returns
+    Original argument index of \p item.
+
+@pre
+    \p item is not \c NULL.
+@pre
+    \p item has the type #ARGPAR_ITEM_TYPE_NON_OPT.
+
+@sa
+    argpar_item_non_opt_non_opt_index() -- Returns the non-option index
+    of a non-option parsing item.
+*/
+/// @cond hidden_macro
 ARGPAR_HIDDEN
+/// @endcond
 unsigned int argpar_item_non_opt_orig_index(const struct argpar_item *item);
 
-/*
- * Returns the index, within the non-option arguments, of the non-option
- * parsing item `item`.
- */
+/*!
+@brief
+    Returns the index, within the parsed non-option parsing items, of
+    the non-option parsing item \p item.
+
+For example, with the following command line (all options have no
+argument):
+
+@code{.unparsed}
+-f -m meow --jus mix --kilo
+@endcode
+
+The non-option index of \c meow is&nbsp;0 while the original
+argument index of \c mix is&nbsp;1.
+
+@param[in] item
+    Non-option parsing item of which to get the non-option index.
+
+@returns
+    Non-option index of \p item.
+
+@pre
+    \p item is not \c NULL.
+@pre
+    \p item has the type #ARGPAR_ITEM_TYPE_NON_OPT.
+
+@sa
+    argpar_item_non_opt_orig_index() -- Returns the original argument
+    index of a non-option parsing item.
+*/
+/// @cond hidden_macro
 ARGPAR_HIDDEN
+/// @endcond
 unsigned int argpar_item_non_opt_non_opt_index(const struct argpar_item *item);
 
-struct argpar_item_array {
-       const struct argpar_item **items;
+/*!
+@brief
+    Destroys the parsing item \p item.
 
-       /* Number of used slots in `items` */
-       unsigned int n_items;
+@param[in] item
+    Parsing item to destroy (may be \c NULL).
+*/
+/// @cond hidden_macro
+ARGPAR_HIDDEN
+/// @endcond
+void argpar_item_destroy(const struct argpar_item *item);
 
-       /* Number of allocated slots in `items` */
-       unsigned int n_alloc;
-};
+/*!
+@def ARGPAR_ITEM_DESTROY_AND_RESET(_item)
 
-/* What is returned by argpar_parse() */
-struct argpar_parse_ret {
-       /*
-        * Array of parsing items, or `NULL` on error.
-        *
-        * Do NOT destroy those items manually with
-        * argpar_iter_destroy(): call argpar_parse_ret_fini() to
-        * finalize the whole structure.
-        */
-       struct argpar_item_array *items;
-
-       /* Error string, or `NULL` if none */
-       char *error;
-
-       /* Number of original arguments (`argv`) ingested */
-       unsigned int ingested_orig_args;
-};
+@brief
+    Calls argpar_item_destroy() with \p _item, and then sets \p _item
+    to \c NULL.
 
-/*
- * Parses arguments in `argv` until the end is reached or an error is
- * encountered.
- *
- * On success, this function returns an array of items (field `items` of
- * `struct argpar_parse_ret`).
- *
- * In the returned structure, `ingested_orig_args` is the number of
- * ingested arguments within `argv` to produce the resulting array of
- * items.
- *
- * If `fail_on_unknown_opt` is true, then on success
- * `ingested_orig_args` is equal to `argc`. Otherwise,
- * `ingested_orig_args` contains the number of original arguments until
- * an unknown _option_ occurs. For example, with
- *
- *     --great --white contact nuance --shark nuclear
- *
- * if `--shark` is not described within `descrs` and
- * `fail_on_unknown_opt` is false, then `ingested_orig_args` is 4 (two
- * options, two non-options), whereas `argc` is 6.
- *
- * This makes it possible to know where a command name is, for example.
- * With those arguments:
- *
- *     --verbose --stuff=23 do-something --specific-opt -f -b
- *
- * and the descriptors for `--verbose` and `--stuff` only, the function
- * returns the `--verbose` and `--stuff` option items, the
- * `do-something` non-option item, and that three original arguments
- * were ingested. This means you can start the next argument parsing
- * stage, with option descriptors depending on the command name, at
- * `&argv[3]`.
- *
- * Note that `ingested_orig_args` is not always equal to the number of
- * returned items, as
- *
- *     --hello -fdw
- *
- * for example contains two ingested original arguments, but four
- * resulting items.
- *
- * On failure, the `items` member of the returned structure is `NULL`,
- * and the `error` string member contains details about the error.
- *
- * Finalize the returned structure with argpar_parse_ret_fini().
- */
+@param[in] _item
+    Item to destroy and variable to reset
+    (<code>const struct argpar_item *</code> type).
+*/
+#define ARGPAR_ITEM_DESTROY_AND_RESET(_item)                           \
+       {                                                               \
+               argpar_item_destroy(_item);                             \
+               _item = NULL;                                           \
+       }
+
+/// @}
+
+/*!
+@name Error API
+@{
+*/
+
+/*!
+@struct argpar_error
+
+@brief
+    Opaque parsing error type
+*/
+struct argpar_error;
+
+/*!
+@brief
+    Returns the index of the original argument (in \p argv, as passed to
+    argpar_iter_create()) for which the parsing error described by
+    \p error occurred.
+
+@param[in] error
+    Parsing error of which to get the original argument index.
+
+@returns
+    Original argument index of \p error.
+
+@pre
+    \p error is not \c NULL.
+*/
+/// @cond hidden_macro
 ARGPAR_HIDDEN
-struct argpar_parse_ret argpar_parse(unsigned int argc,
-               const char * const *argv,
-               const struct argpar_opt_descr *descrs,
-               bool fail_on_unknown_opt);
+/// @endcond
+unsigned int argpar_error_orig_index(const struct argpar_error *error);
 
-/*
- * Finalizes what argpar_parse() returns.
- *
- * You may call argpar_parse() multiple times with the same structure.
- */
+/*!
+@brief
+    Returns the name of the unknown option for which the parsing error
+    described by \p error occurred.
+
+The returned name includes any <code>-</code> or <code>\--</code>
+prefix.
+
+With the long option with argument form, for example
+<code>\--mireille=deyglun</code>, this function only returns the name
+part (<code>\--mireille</code> in the last example).
+
+You may only call this function if the call to argpar_iter_next() which
+set \p error returned #ARGPAR_ITER_NEXT_STATUS_ERROR_UNKNOWN_OPT.
+
+@param[in] error
+    Parsing error of which to get the name of the unknown option.
+
+@returns
+    Name of the unknown option of \p error.
+
+@pre
+    \p error is not \c NULL.
+@pre
+    The call to argpar_iter_next() which set \p error returned
+    #ARGPAR_ITER_NEXT_STATUS_ERROR_UNKNOWN_OPT.
+*/
+/// @cond hidden_macro
 ARGPAR_HIDDEN
-void argpar_parse_ret_fini(struct argpar_parse_ret *ret);
+/// @endcond
+const char *argpar_error_unknown_opt_name(const struct argpar_error *error);
+
+/*!
+@brief
+    Returns the descriptor of the option for which the parsing error
+    described by \p error occurred.
+
+You may only call this function if the call to argpar_iter_next() which
+set \p error returned #ARGPAR_ITER_NEXT_STATUS_ERROR_MISSING_OPT_ARG or
+#ARGPAR_ITER_NEXT_STATUS_ERROR_UNEXPECTED_OPG_ARG.
+
+@param[in] error
+    Parsing error of which to get the option descriptor.
+@param[out] is_short
+    @parblock
+    If not \c NULL, this function sets \p *is_short to:
+
+    - \c true if the option for which \p error occurred is a short
+      option.
+
+    - \c false if the option for which \p error occurred is a long
+      option.
+    @endparblock
+
+@returns
+    Descriptor of the option of \p error.
+
+@pre
+    \p error is not \c NULL.
+@pre
+    The call to argpar_iter_next() which set \p error returned
+    #ARGPAR_ITER_NEXT_STATUS_ERROR_MISSING_OPT_ARG or
+    #ARGPAR_ITER_NEXT_STATUS_ERROR_UNEXPECTED_OPG_ARG.
+*/
+/// @cond hidden_macro
+ARGPAR_HIDDEN
+/// @endcond
+const struct argpar_opt_descr *argpar_error_opt_descr(
+               const struct argpar_error *error, bool *is_short);
+
+/*!
+@brief
+    Destroys the parsing error \p error.
+
+@param[in] error
+    Parsing error to destroy (may be \c NULL).
+*/
+/// @cond hidden_macro
+ARGPAR_HIDDEN
+/// @endcond
+void argpar_error_destroy(const struct argpar_error *error);
 
-/*
- * Creates an argument parsing iterator.
- *
- * This function initializes the returned structure, but doesn't
- * actually start parsing the arguments.
- *
- * `*argv` and `*descrs` must NOT change for the lifetime of the
- * returned iterator (until you call argpar_iter_destroy()).
- *
- * Call argpar_iter_next() with the returned iterator to obtain the next
- * parsing result (item).
- */
+/// @}
+
+/*!
+@name Iterator API
+@{
+*/
+
+/*!
+@brief
+    Option descriptor
+
+argpar_iter_create() accepts an array of instances of such a type,
+terminated with #ARGPAR_OPT_DESCR_SENTINEL, as its \p descrs parameter.
+
+The typical usage is, for example:
+
+@code
+const struct argpar_opt_descr descrs[] = {
+    { 0, 'd', NULL, false },
+    { 1, '\0', "squeeze", true },
+    { 2, 'm', "meow", true },
+    ARGPAR_OPT_DESCR_SENTINEL,
+};
+@endcode
+*/
+struct argpar_opt_descr {
+       /// Numeric ID, to uniquely identify this descriptor
+       const int id;
+
+       /// Short option character, or <code>'\0'</code>
+       const char short_name;
+
+       /// Long option name (without the <code>\--</code> prefix), or \c NULL
+       const char * const long_name;
+
+       /// \c true if this option has an argument
+       const bool with_arg;
+};
+
+/*!
+@brief
+    Sentinel for an option descriptor array
+
+The typical usage is, for example:
+
+@code
+const struct argpar_opt_descr descrs[] = {
+    { 0, 'd', NULL, false },
+    { 1, '\0', "squeeze", true },
+    { 2, 'm', "meow", true },
+    ARGPAR_OPT_DESCR_SENTINEL,
+};
+@endcode
+*/
+#define ARGPAR_OPT_DESCR_SENTINEL      { -1, '\0', NULL, false }
+
+/*!
+@struct argpar_iter
+
+@brief
+    Opaque argpar iterator type
+
+argpar_iter_create() returns a pointer to such a type.
+*/
+struct argpar_iter;
+
+/*!
+@brief
+    Creates and returns an argument parsing iterator to parse the
+    original arguments \p argv of which the count is \p argc using the
+    option descriptors \p descrs.
+
+This function initializes the returned structure, but doesn't actually
+start parsing the arguments.
+
+argpar considers \em all the elements of \p argv, including the first
+one, so that you would typically pass <code>(argc - 1)</code> as \p argc
+and <code>\&argv[1]</code> as \p argv from what <code>main()</code>
+receives, or ignore the parsing item of the first call to
+argpar_iter_next().
+
+\p *argv and \p *descrs must \em not change for all of:
+
+- The lifetime of the returned iterator (until you call
+  argpar_iter_destroy()).
+
+- The lifetime of any parsing item (until you call
+  argpar_item_destroy()) which argpar_iter_next() creates from the
+  returned iterator.
+
+- The lifetime of any parsing error (until you call
+  argpar_error_destroy()) which argpar_iter_next() creates from the
+  returned iterator.
+
+@param[in] argc
+    Number of original arguments to parse in \p argv.
+@param[in] argv
+    Original arguments to parse, of which the count is \p argc.
+@param[in] descrs
+    @parblock
+    Option descriptor array, terminated with #ARGPAR_OPT_DESCR_SENTINEL.
+
+    May contain duplicate entries.
+    @endparblock
+
+@returns
+    New argument parsing iterator, or \c NULL on memory error.
+
+@pre
+    \p argc is greater than 0.
+@pre
+    \p argv is not \c NULL.
+@pre
+    The first \p argc elements of \p argv are not \c NULL.
+@pre
+    \p descrs is not \c NULL.
+
+@sa
+    argpar_iter_destroy() -- Destroys an argument parsing iterator.
+*/
+/// @cond hidden_macro
 ARGPAR_HIDDEN
+/// @endcond
 struct argpar_iter *argpar_iter_create(unsigned int argc,
                const char * const *argv,
                const struct argpar_opt_descr *descrs);
 
-/*
- * Destroys `iter`, as returned by argpar_iter_create().
- */
+/*!
+@brief
+    Destroys the argument parsing iterator \p iter.
+
+@param[in] iter
+    Argument parsing iterator to destroy (may be \c NULL).
+
+@sa
+    argpar_iter_create() -- Creates an argument parsing iterator.
+*/
+/// @cond hidden_macro
 ARGPAR_HIDDEN
+/// @endcond
 void argpar_iter_destroy(struct argpar_iter *iter);
 
-/*
- * Return type of argpar_iter_next().
- */
+/*!
+@brief
+    Return type of argpar_iter_next().
+
+Error status enumerators have a negative value.
+*/
 enum argpar_iter_next_status {
+       /// Success
        ARGPAR_ITER_NEXT_STATUS_OK,
+
+       /// End of iteration (no more original arguments to parse)
        ARGPAR_ITER_NEXT_STATUS_END,
-       ARGPAR_ITER_NEXT_STATUS_ERROR_UNKNOWN_OPT,
-       ARGPAR_ITER_NEXT_STATUS_ERROR_MISSING_OPT_ARG,
-       ARGPAR_ITER_NEXT_STATUS_ERROR_INVALID_ARG,
-       ARGPAR_ITER_NEXT_STATUS_ERROR_UNEXPECTED_OPT_ARG,
-       ARGPAR_ITER_NEXT_STATUS_ERROR_MEMORY,
+
+       /// Unknown option error
+       ARGPAR_ITER_NEXT_STATUS_ERROR_UNKNOWN_OPT = -1,
+
+       /// Missing option argument error
+       ARGPAR_ITER_NEXT_STATUS_ERROR_MISSING_OPT_ARG = -2,
+
+       /// Unexpected option argument error
+       ARGPAR_ITER_NEXT_STATUS_ERROR_UNEXPECTED_OPT_ARG = -3,
+
+       /// Memory error
+       ARGPAR_ITER_NEXT_STATUS_ERROR_MEMORY = -12,
 };
 
-/*
- * Parses and returns the next item from `iter`.
- *
- * On success, this function:
- *
- * * Sets `*item` to a parsing item which describes the next option
- *   or non-option argument.
- *
- *   Destroy `*item` with argpar_item_destroy().
- *
- * * Returns `ARGPAR_ITER_NEXT_STATUS_OK`.
- *
- * If there are no more items to return, this function returns
- * `ARGPAR_ITER_NEXT_STATUS_END`.
- *
- * On failure, this function:
- *
- * * Returns one of:
- *
- *   `ARGPAR_ITER_NEXT_STATUS_ERROR_UNKNOWN_OPT`:
- *       Unknown option (not found in `descrs` as passed to
- *       argpar_iter_create() to create `iter`).
- *
- *   `ARGPAR_ITER_NEXT_STATUS_ERROR_MISSING_OPT_ARG`:
- *       Missing option argument.
- *
- *   `ARGPAR_ITER_NEXT_STATUS_ERROR_INVALID_ARG`:
- *       Invalid argument.
- *
- *   `ARGPAR_ITER_NEXT_STATUS_ERROR_UNEXPECTED_OPT_ARG`:
- *       Unexpected option argument.
- *
- *   `ARGPAR_ITER_NEXT_STATUS_ERROR_MEMORY`:
- *       Memory error.
- *
- * * Except for the `ARGPAR_ITER_NEXT_STATUS_ERROR_MEMORY` status,
- *   sets `*error`, if not `NULL`, to a descriptive error string.
- *   Free `*error` with free().
- */
+/*!
+@brief
+    Sets \p *item to the next item of the argument parsing iterator
+    \p iter and advances \p iter.
+
+If there are no more original arguments to parse, this function returns
+#ARGPAR_ITER_NEXT_STATUS_END.
+
+@param[in] iter
+    Argument parsing iterator from which to get the next parsing item.
+@param[out] item
+    @parblock
+    On success, \p *item is the next parsing item of \p iter.
+
+    Destroy \p *item with argpar_item_destroy().
+    @endparblock
+@param[out] error
+    @parblock
+    When this function returns
+    #ARGPAR_ITER_NEXT_STATUS_ERROR_UNKNOWN_OPT,
+    #ARGPAR_ITER_NEXT_STATUS_ERROR_MISSING_OPT_ARG, or
+    #ARGPAR_ITER_NEXT_STATUS_ERROR_UNEXPECTED_OPG_ARG, if this parameter
+    is not \c NULL,
+    \p *error contains details about the error.
+
+    Destroy \p *error with argpar_error_destroy().
+    @endparblock
+
+@returns
+    Status code.
+
+@pre
+    \p iter is not \c NULL.
+@pre
+    \p item is not \c NULL.
+*/
+/// @cond hidden_macro
+ARGPAR_HIDDEN
+/// @endcond
 enum argpar_iter_next_status argpar_iter_next(
                struct argpar_iter *iter, const struct argpar_item **item,
-               char **error);
+               const struct argpar_error **error);
 
 /*
  * Returns the number of ingested elements from `argv`, as passed to
  * argpar_iter_create() to create `*iter`, that were required to produce
  * the previously returned items.
  */
+
+/*!
+@brief
+    Returns the number of ingested original arguments (in
+    \p argv, as passed to argpar_iter_create() to create \p iter) that
+    the parser ingested to produce the \em previous parsing items.
+
+@param[in] iter
+    Argument parsing iterator of which to get the number of ingested
+    original arguments.
+
+@returns
+    Number of original arguments which \p iter ingested.
+
+@pre
+    \p iter is not \c NULL.
+*/
+/// @cond hidden_macro
 ARGPAR_HIDDEN
+/// @endcond
 unsigned int argpar_iter_ingested_orig_args(const struct argpar_iter *iter);
 
-/*
- * Destroys `item`, as created by argpar_iter_next().
- */
-ARGPAR_HIDDEN
-void argpar_item_destroy(const struct argpar_item *item);
+/// @}
 
-/*
- * Destroys `_item` (`const struct argpar_item *`) and sets it to
- * `NULL`.
- */
-#define ARGPAR_ITEM_DESTROY_AND_RESET(_item)                           \
-       {                                                               \
-               argpar_item_destroy(_item);                             \
-               _item = NULL;                                           \
-       }
+/// @}
 
 #endif /* ARGPAR_ARGPAR_H */
This page took 0.030809 seconds and 4 git commands to generate.