1 #ifndef HEADER_CURL_TOOL_PARAMHLP_H
2 #define HEADER_CURL_TOOL_PARAMHLP_H
3 /***************************************************************************
5 * Project ___| | | | _ \| |
7 * | (__| |_| | _ <| |___
8 * \___|\___/|_| \_\_____|
10 * Copyright (C) 1998 - 2011, Daniel Stenberg, <daniel@haxx.se>, et al.
12 * This software is licensed as described in the file COPYING, which
13 * you should have received as part of this distribution. The terms
14 * are also available at http://curl.haxx.se/docs/copyright.html.
16 * You may opt to use, copy, modify, merge, publish, distribute and/or sell
17 * copies of the Software, and permit persons to whom the Software is
18 * furnished to do so, under the terms of the COPYING file.
20 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
21 * KIND, either express or implied.
23 ***************************************************************************/
26 struct getout *new_getout(struct Configurable *config);
28 ParameterError file2string(char **bufp, FILE *file);
30 ParameterError file2memory(char **bufp, size_t *size, FILE *file);
32 void cleanarg(char *str);
34 int str2num(long *val, const char *str);
36 long proto2num(struct Configurable *config, long *val, const char *str);
38 int str2offset(curl_off_t *val, const char *str);
40 ParameterError checkpasswd(const char *kind, char **userpwd);
42 ParameterError add2list(struct curl_slist **list, const char *ptr);
44 int ftpfilemethod(struct Configurable *config, const char *str);
46 int ftpcccmethod(struct Configurable *config, const char *str);
48 long delegation(struct Configurable *config, char *str);
50 #endif /* HEADER_CURL_TOOL_PARAMHLP_H */