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