jpayne@69
|
1 #ifndef CURLINC_STDCHEADERS_H
|
jpayne@69
|
2 #define CURLINC_STDCHEADERS_H
|
jpayne@69
|
3 /***************************************************************************
|
jpayne@69
|
4 * _ _ ____ _
|
jpayne@69
|
5 * Project ___| | | | _ \| |
|
jpayne@69
|
6 * / __| | | | |_) | |
|
jpayne@69
|
7 * | (__| |_| | _ <| |___
|
jpayne@69
|
8 * \___|\___/|_| \_\_____|
|
jpayne@69
|
9 *
|
jpayne@69
|
10 * Copyright (C) 1998 - 2022, Daniel Stenberg, <daniel@haxx.se>, et al.
|
jpayne@69
|
11 *
|
jpayne@69
|
12 * This software is licensed as described in the file COPYING, which
|
jpayne@69
|
13 * you should have received as part of this distribution. The terms
|
jpayne@69
|
14 * are also available at https://curl.se/docs/copyright.html.
|
jpayne@69
|
15 *
|
jpayne@69
|
16 * You may opt to use, copy, modify, merge, publish, distribute and/or sell
|
jpayne@69
|
17 * copies of the Software, and permit persons to whom the Software is
|
jpayne@69
|
18 * furnished to do so, under the terms of the COPYING file.
|
jpayne@69
|
19 *
|
jpayne@69
|
20 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
jpayne@69
|
21 * KIND, either express or implied.
|
jpayne@69
|
22 *
|
jpayne@69
|
23 * SPDX-License-Identifier: curl
|
jpayne@69
|
24 *
|
jpayne@69
|
25 ***************************************************************************/
|
jpayne@69
|
26
|
jpayne@69
|
27 #include <sys/types.h>
|
jpayne@69
|
28
|
jpayne@69
|
29 size_t fread(void *, size_t, size_t, FILE *);
|
jpayne@69
|
30 size_t fwrite(const void *, size_t, size_t, FILE *);
|
jpayne@69
|
31
|
jpayne@69
|
32 int strcasecmp(const char *, const char *);
|
jpayne@69
|
33 int strncasecmp(const char *, const char *, size_t);
|
jpayne@69
|
34
|
jpayne@69
|
35 #endif /* CURLINC_STDCHEADERS_H */
|