Changeset 844 for trunk/processor/head.m4
- Timestamp:
- 2012-03-25T09:18:30+02:00 (14 months ago)
- File:
-
- 1 edited
-
trunk/processor/head.m4 (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/processor/head.m4
r843 r844 111 111 { 112 112 void **p = (void **) mem; 113 void **end = ( char *) mem + n;113 void **end = (void **) ((char *) mem + n); 114 114 while (p < end - sizeof(content)) { 115 115 *p = content; … … 148 148 #endif 149 149 /* {{{ xc_zstrlen_char */ 150 static inline int xc_zstrlen_char( zstr s)150 static inline int xc_zstrlen_char(const_zstr s) 151 151 { 152 152 return strlen(ZSTR_S(s)); … … 161 161 /* }}} */ 162 162 /* {{{ xc_zstrlen */ 163 static inline int xc_zstrlen(int type, zstr s)163 static inline int xc_zstrlen(int type, const_zstr s) 164 164 { 165 165 return type == IS_UNICODE ? xc_zstrlen_uchar(s) : xc_zstrlen_char(s);
Note: See TracChangeset
for help on using the changeset viewer.

