setopt: split out curl_easy_setopt() to its own file

... to make url.c smaller.

Closes #1944
This commit is contained in:
Daniel Stenberg 2017-11-10 17:45:54 +01:00
parent 2e850dafa5
commit aa7668b948
No known key found for this signature in database
GPG key ID: 5CC908FDB71E12C2
6 changed files with 2640 additions and 2566 deletions

27
lib/setopt.h Normal file
View file

@ -0,0 +1,27 @@
#ifndef HEADER_CURL_SETOPT_H
#define HEADER_CURL_SETOPT_H
/***************************************************************************
* _ _ ____ _
* Project ___| | | | _ \| |
* / __| | | | |_) | |
* | (__| |_| | _ <| |___
* \___|\___/|_| \_\_____|
*
* Copyright (C) 1998 - 2017, 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
* are also available at https://curl.haxx.se/docs/copyright.html.
*
* You may opt to use, copy, modify, merge, publish, distribute and/or sell
* copies of the Software, and permit persons to whom the Software is
* furnished to do so, under the terms of the COPYING file.
*
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
* KIND, either express or implied.
*
***************************************************************************/
CURLcode Curl_setstropt(char **charp, const char *s);
#endif /* HEADER_CURL_SETOPT_H */