Changeset 713 for pjproject/trunk/pjlib/include/pj/string_i.h
- Timestamp:
- Sep 13, 2006 10:48:37 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjlib/include/pj/string_i.h
r354 r713 142 142 return diff > 0 ? 1 : -1; 143 143 } else if (str1->ptr && str1->slen) { 144 return pj_ansi_strncmp(str1->ptr, str2->ptr, str1->slen);144 return memcmp(str1->ptr, str2->ptr, str1->slen); 145 145 } else { 146 146 return 0; … … 152 152 { 153 153 if (str1->ptr && str2->ptr) 154 return pj_ansi_strncmp(str1->ptr, str2->ptr, len);154 return memcmp(str1->ptr, str2->ptr, len); 155 155 else if (str2->ptr) 156 156 return str2->slen==0 ? 0 : -1; … … 167 167 return 0; 168 168 else if (str1->ptr && str2) 169 return pj_ansi_strncmp(str1->ptr, str2, len);169 return memcmp(str1->ptr, str2, len); 170 170 else if (str1->ptr) 171 171 return str1->slen==0 ? 0 : 1;
Note: See TracChangeset
for help on using the changeset viewer.