diff options
author | jcid <devnull@localhost> | 2007-11-17 14:47:41 +0100 |
---|---|---|
committer | jcid <devnull@localhost> | 2007-11-17 14:47:41 +0100 |
commit | dfd741a2a60c8013cf96666bb9f24408b863790e (patch) | |
tree | 3cd8aac285423bec9f37daaef318b0544b1211be /src/url.h | |
parent | 1a09cec70152b4836a20cd8a0d914f62b290fae2 (diff) |
- s/camp/field/ s/CAMP/FIELD/
Diffstat (limited to 'src/url.h')
-rw-r--r-- | src/url.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -87,10 +87,10 @@ #define URL_ILLEGAL_CHARS_SPC(u) URL_ILLEGAL_CHARS_SPC_(u) -/* URL-camp compare methods */ -#define URL_STRCAMP_CMP(s1,s2) \ +/* URL-field compare methods */ +#define URL_STR_FIELD_CMP(s1,s2) \ (s1) && (s2) ? strcmp(s1,s2) : !(s1) && !(s2) ? 0 : (s1) ? 1 : -1 -#define URL_STRCAMP_I_CMP(s1,s2) \ +#define URL_STR_FIELD_I_CMP(s1,s2) \ (s1) && (s2) ? dStrcasecmp(s1,s2) : !(s1) && !(s2) ? 0 : (s1) ? 1 : -1 |