jpayne@69: #ifndef CURLINC_STDCHEADERS_H jpayne@69: #define CURLINC_STDCHEADERS_H jpayne@69: /*************************************************************************** jpayne@69: * _ _ ____ _ jpayne@69: * Project ___| | | | _ \| | jpayne@69: * / __| | | | |_) | | jpayne@69: * | (__| |_| | _ <| |___ jpayne@69: * \___|\___/|_| \_\_____| jpayne@69: * jpayne@69: * Copyright (C) 1998 - 2022, Daniel Stenberg, , et al. jpayne@69: * jpayne@69: * This software is licensed as described in the file COPYING, which jpayne@69: * you should have received as part of this distribution. The terms jpayne@69: * are also available at https://curl.se/docs/copyright.html. jpayne@69: * jpayne@69: * You may opt to use, copy, modify, merge, publish, distribute and/or sell jpayne@69: * copies of the Software, and permit persons to whom the Software is jpayne@69: * furnished to do so, under the terms of the COPYING file. jpayne@69: * jpayne@69: * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY jpayne@69: * KIND, either express or implied. jpayne@69: * jpayne@69: * SPDX-License-Identifier: curl jpayne@69: * jpayne@69: ***************************************************************************/ jpayne@69: jpayne@69: #include jpayne@69: jpayne@69: size_t fread(void *, size_t, size_t, FILE *); jpayne@69: size_t fwrite(const void *, size_t, size_t, FILE *); jpayne@69: jpayne@69: int strcasecmp(const char *, const char *); jpayne@69: int strncasecmp(const char *, const char *, size_t); jpayne@69: jpayne@69: #endif /* CURLINC_STDCHEADERS_H */