Changeset 65 for pjproject/trunk/pjlib/include/pj/string.h
- Timestamp:
- Nov 21, 2005 1:55:47 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjlib/include/pj/string.h
r62 r65 399 399 * @return the pointer to first character found, or NULL. 400 400 */ 401 PJ_INLINE(char*) pj_strchr( pj_str_t *str, int chr)401 PJ_INLINE(char*) pj_strchr( const pj_str_t *str, int chr) 402 402 { 403 403 return (char*) memchr(str->ptr, chr, str->slen);
Note: See TracChangeset
for help on using the changeset viewer.