2010-02-14 14:40:18 -05:00
|
|
|
_ _ ____ _
|
|
|
|
___| | | | _ \| |
|
|
|
|
/ __| | | | |_) | |
|
|
|
|
| (__| |_| | _ <| |___
|
1999-12-29 09:20:26 -05:00
|
|
|
\___|\___/|_| \_\_____|
|
|
|
|
|
|
|
|
Include files for libcurl, external users.
|
|
|
|
|
|
|
|
They're all placed in the curl subdirectory here for better fit in any kind
|
2008-08-06 20:29:08 -04:00
|
|
|
of environment. You must include files from here using...
|
1999-12-29 09:20:26 -05:00
|
|
|
|
|
|
|
#include <curl/curl.h>
|
|
|
|
|
|
|
|
... style and point the compiler's include path to the directory holding the
|
2000-03-02 18:12:55 -05:00
|
|
|
curl subdirectory. It makes it more likely to survive future modifications.
|
2003-05-27 08:51:46 -04:00
|
|
|
|
|
|
|
NOTE FOR LIBCURL HACKERS
|
|
|
|
|
2010-03-24 05:45:47 -04:00
|
|
|
* If you check out from git on a non-configure platform, you must run the
|
2017-05-22 03:05:10 -04:00
|
|
|
appropriate buildconf* script to set up files before being able of compiling
|
|
|
|
the library.
|
2003-05-27 08:51:46 -04:00
|
|
|
|
|
|
|
* We cannot assume anything else but very basic compiler features being
|
|
|
|
present. While libcurl requires an ANSI C compiler to build, some of the
|
2003-06-06 02:44:05 -04:00
|
|
|
earlier ANSI compilers clearly can't deal with some preprocessor operators.
|
2003-05-27 08:51:46 -04:00
|
|
|
|
|
|
|
* Newlines must remain unix-style for older compilers' sake.
|
|
|
|
|
|
|
|
* Comments must be written in the old-style /* unnested C-fashion */
|
|
|
|
|
|
|
|
To figure out how to do good and portable checks for features, operating
|
|
|
|
systems or specific hardwarare, a very good resource is Bjorn Reese's
|
2017-09-04 10:08:54 -04:00
|
|
|
collection at https://sourceforge.net/p/predef/wiki/
|