summaryrefslogtreecommitdiffstats
path: root/Source/CTest/Curl/curl/stdcheaders.h
diff options
context:
space:
mode:
authorAndy Cedilnik <andy.cedilnik@kitware.com>2003-01-08 01:28:11 (GMT)
committerAndy Cedilnik <andy.cedilnik@kitware.com>2003-01-08 01:28:11 (GMT)
commit89b3578e0e6aa9f94693bbe9ec6b4bda7012d3fe (patch)
tree10b99747365186e11976f84b291a1469c4195fb5 /Source/CTest/Curl/curl/stdcheaders.h
parent87b035af6ab58f42ae241abc1e3d01ed907cc980 (diff)
downloadCMake-89b3578e0e6aa9f94693bbe9ec6b4bda7012d3fe.zip
CMake-89b3578e0e6aa9f94693bbe9ec6b4bda7012d3fe.tar.gz
CMake-89b3578e0e6aa9f94693bbe9ec6b4bda7012d3fe.tar.bz2
Initial import
Diffstat (limited to 'Source/CTest/Curl/curl/stdcheaders.h')
-rw-r--r--Source/CTest/Curl/curl/stdcheaders.h36
1 files changed, 36 insertions, 0 deletions
diff --git a/Source/CTest/Curl/curl/stdcheaders.h b/Source/CTest/Curl/curl/stdcheaders.h
new file mode 100644
index 0000000..3fbaaf7
--- /dev/null
+++ b/Source/CTest/Curl/curl/stdcheaders.h
@@ -0,0 +1,36 @@
+#ifndef __STDC_HEADERS_H
+#define __STDC_HEADERS_H
+/*****************************************************************************
+ * _ _ ____ _
+ * Project ___| | | | _ \| |
+ * / __| | | | |_) | |
+ * | (__| |_| | _ <| |___
+ * \___|\___/|_| \_\_____|
+ *
+ * Copyright (C) 2000, Daniel Stenberg, <daniel@haxx.se>, et al.
+ *
+ * In order to be useful for every potential user, curl and libcurl are
+ * dual-licensed under the MPL and the MIT/X-derivate licenses.
+ *
+ * You may opt to use, copy, modify, merge, publish, distribute and/or sell
+ * copies of the Software, and permit persons to whom the Software is
+ * furnished to do so, under the terms of the MPL or the MIT/X-derivate
+ * licenses. You may pick one of these licenses.
+ *
+ * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
+ * KIND, either express or implied.
+ *
+ * $Id$
+ *****************************************************************************/
+
+#ifdef HAVE_SYS_TYPES_H
+#include <sys/types.h>
+#endif
+
+size_t fread (void *, size_t, size_t, FILE *);
+size_t fwrite (const void *, size_t, size_t, FILE *);
+
+int strcasecmp(const char *, const char *);
+int strncasecmp(const char *, const char *, size_t);
+
+#endif