2000-05-22 10:09:31 -04:00
|
|
|
#ifndef __STREQUAL_H
|
|
|
|
#define __STREQUAL_H
|
2002-09-03 07:52:59 -04:00
|
|
|
/***************************************************************************
|
2004-06-13 04:32:57 -04:00
|
|
|
* _ _ ____ _
|
|
|
|
* Project ___| | | | _ \| |
|
|
|
|
* / __| | | | |_) | |
|
|
|
|
* | (__| |_| | _ <| |___
|
2000-05-22 10:09:31 -04:00
|
|
|
* \___|\___/|_| \_\_____|
|
|
|
|
*
|
2008-10-15 07:31:39 -04:00
|
|
|
* Copyright (C) 1998 - 2008, Daniel Stenberg, <daniel@haxx.se>, et al.
|
2000-05-22 10:09:31 -04:00
|
|
|
*
|
2002-09-03 07:52:59 -04:00
|
|
|
* This software is licensed as described in the file COPYING, which
|
|
|
|
* you should have received as part of this distribution. The terms
|
|
|
|
* are also available at http://curl.haxx.se/docs/copyright.html.
|
2004-06-13 04:32:57 -04:00
|
|
|
*
|
2001-01-03 04:29:33 -05:00
|
|
|
* 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
|
2002-09-03 07:52:59 -04:00
|
|
|
* furnished to do so, under the terms of the COPYING file.
|
2000-05-22 10:09:31 -04:00
|
|
|
*
|
2001-01-03 04:29:33 -05:00
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
2000-05-22 10:09:31 -04:00
|
|
|
*
|
2002-09-03 07:52:59 -04:00
|
|
|
***************************************************************************/
|
2001-01-05 05:11:41 -05:00
|
|
|
|
2004-11-09 09:00:56 -05:00
|
|
|
#include <curl/curl.h>
|
|
|
|
|
2001-03-14 03:47:56 -05:00
|
|
|
#define strequal(a,b) curl_strequal(a,b)
|
|
|
|
#define strnequal(a,b,c) curl_strnequal(a,b,c)
|
2000-05-22 10:09:31 -04:00
|
|
|
|
2001-04-22 11:49:17 -04:00
|
|
|
#ifndef HAVE_STRLCAT
|
2001-05-18 08:03:30 -04:00
|
|
|
#define strlcat(x,y,z) Curl_strlcat(x,y,z)
|
2001-04-22 11:49:17 -04:00
|
|
|
#endif
|
2005-04-12 03:56:57 -04:00
|
|
|
size_t strlcat(char *dst, const char *src, size_t siz);
|
2001-04-22 11:49:17 -04:00
|
|
|
|
2000-05-22 10:09:31 -04:00
|
|
|
#endif
|