diff options
author | Steve Holme <steve_holme@hotmail.com> | 2014-02-02 14:58:25 +0000 |
---|---|---|
committer | Steve Holme <steve_holme@hotmail.com> | 2014-02-03 18:38:14 +0000 |
commit | c35d05aa62cbeed14629769293e3c30ec59fc728 (patch) | |
tree | 7b020b05b46d1d9deea087f395fb14f579032dea /src/tool_getparam.h | |
parent | 8034b08e0e49b21ab8b186575d638dee8c7dfb17 (diff) | |
download | curl-c35d05aa62cbeed14629769293e3c30ec59fc728.tar.gz |
tool_operate: Moved command line argument parsing into separate function
Diffstat (limited to 'src/tool_getparam.h')
-rw-r--r-- | src/tool_getparam.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/tool_getparam.h b/src/tool_getparam.h index a86bfcec6..cf1496c50 100644 --- a/src/tool_getparam.h +++ b/src/tool_getparam.h @@ -7,7 +7,7 @@ * | (__| |_| | _ <| |___ * \___|\___/|_| \_\_____| * - * Copyright (C) 1998 - 2012, Daniel Stenberg, <daniel@haxx.se>, et al. + * Copyright (C) 1998 - 2014, Daniel Stenberg, <daniel@haxx.se>, et al. * * This software is licensed as described in the file COPYING, which * you should have received as part of this distribution. The terms @@ -51,5 +51,8 @@ void parse_cert_parameter(const char *cert_parameter, char **passphrase); #endif +ParameterError parse_args(struct Configurable *config, int argc, + argv_item_t argv[]); + #endif /* HEADER_CURL_TOOL_GETPARAM_H */ |