Path: blob/master/cpp/linux/curl/stdcheaders.h
644 views
#ifndef __STDC_HEADERS_H1#define __STDC_HEADERS_H2/***************************************************************************3* _ _ ____ _4* Project ___| | | | _ \| |5* / __| | | | |_) | |6* | (__| |_| | _ <| |___7* \___|\___/|_| \_\_____|8*9* Copyright (C) 1998 - 2016, Daniel Stenberg, <[email protected]>, et al.10*11* This software is licensed as described in the file COPYING, which12* you should have received as part of this distribution. The terms13* are also available at https://curl.haxx.se/docs/copyright.html.14*15* You may opt to use, copy, modify, merge, publish, distribute and/or sell16* copies of the Software, and permit persons to whom the Software is17* furnished to do so, under the terms of the COPYING file.18*19* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY20* KIND, either express or implied.21*22***************************************************************************/2324#include <sys/types.h>2526size_t fread(void *, size_t, size_t, FILE *);27size_t fwrite(const void *, size_t, size_t, FILE *);2829int strcasecmp(const char *, const char *);30int strncasecmp(const char *, const char *, size_t);3132#endif /* __STDC_HEADERS_H */333435