2012-12-28 06:03:09 -05:00
|
|
|
#ifndef HEADER_CURL_STREQUAL_H
|
|
|
|
#define HEADER_CURL_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
|
|
|
* \___|\___/|_| \_\_____|
|
|
|
|
*
|
2013-02-13 07:18:43 -05:00
|
|
|
* Copyright (C) 1998 - 2013, 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
|
2016-02-02 18:19:02 -05:00
|
|
|
* are also available at https://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
|
|
|
|
2012-12-28 06:03:09 -05:00
|
|
|
#endif /* HEADER_CURL_STREQUAL_H */
|
|
|
|
|