no bug - Bumping Firefox l10n changesets r=release a=l10n-bump DONTBUILD CLOSED TREE
[gecko.git] / third_party / sipcc / cpr_strings.h
blob2d18d4638ae49c43ba961c819d1e237f205f3a1e
1 /* This Source Code Form is subject to the terms of the Mozilla Public
2 * License, v. 2.0. If a copy of the MPL was not distributed with this
3 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
5 #ifndef _CPR_STRINGS_H_
6 #define _CPR_STRINGS_H_
8 #include "cpr_types.h"
10 #include <string.h>
12 #if defined(_MSC_VER)
13 #define cpr_strcasecmp _stricmp
14 #define cpr_strncasecmp _strnicmp
15 #else // _MSC_VER
17 #define cpr_strcasecmp strcasecmp
18 #define cpr_strncasecmp strncasecmp
20 #endif // _MSC_VER
22 #endif