blob: 56ae5c2f2109812d5a45f66c897c9c6459b93471 [file] [log] [blame]
Benny Prijono5dcb38d2005-11-21 01:55:47 +00001/* $Id$ */
2/*
3 * Copyright (C)2003-2006 Benny Prijono <benny@prijono.org>
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18 */
19#ifndef __PJ_COMPAT_STRING_H__
20#define __PJ_COMPAT_STRING_H__
21
22/**
23 * @file string.h
24 * @brief Provides string manipulation functions found in ANSI string.h.
25 */
26
27#if defined(PJ_HAS_STRING_H) && PJ_HAS_STRING_H != 0
28# include <string.h>
29#else
30
31 PJ_DECL(int) strcasecmp(const char *s1, const char *s2);
32 PJ_DECL(int) strncasecmp(const char *s1, const char *s2, int len);
33
34#endif
35
36#if defined(_MSC_VER)
37# define strcasecmp stricmp
38# define strncasecmp strnicmp
39# define snprintf _snprintf
40#else
41# define stricmp strcasecmp
42# define strnicmp strncasecmp
43#endif
44
45
46#define pj_native_strcmp strcmp
47#define pj_native_strncmp strncmp
48#define pj_native_strlen strlen
49#define pj_native_strcpy strcpy
50#define pj_native_strstr strstr
51#define pj_native_strchr strchr
52#define pj_native_strcasecmp strcasecmp
53#define pj_native_stricmp strcasecmp
54#define pj_native_strncasecmp strncasecmp
55#define pj_native_strnicmp strncasecmp
56
57#endif /* __PJ_COMPAT_STRING_H__ */