1 | <!--
|
---|
2 | Copyright (C) Daniel Stenberg, <[email protected]>, et al.
|
---|
3 |
|
---|
4 | SPDX-License-Identifier: curl
|
---|
5 | -->
|
---|
6 |
|
---|
7 | # include
|
---|
8 |
|
---|
9 | Public include files for libcurl, external users.
|
---|
10 |
|
---|
11 | They're all placed in the curl subdirectory here for better fit in any kind of
|
---|
12 | environment. You must include files from here using...
|
---|
13 |
|
---|
14 | #include <curl/curl.h>
|
---|
15 |
|
---|
16 | ... style and point the compiler's include path to the directory holding the
|
---|
17 | curl subdirectory. It makes it more likely to survive future modifications.
|
---|
18 |
|
---|
19 | The public curl include files can be shared freely between different platforms
|
---|
20 | and different architectures.
|
---|