Changeset 230 for trunk/processor/head.m4
- Timestamp:
- 2006-10-10T02:31:50+02:00 (7 years ago)
- File:
-
- 1 edited
-
trunk/processor/head.m4 (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/processor/head.m4
r220 r230 77 77 }; 78 78 /* }}} */ 79 #ifdef XCACHE_HAVE_DPRINT79 #ifdef HAVE_XCACHE_DPRINT 80 80 static void xc_dprint_indent(int indent) /* {{{ */ 81 81 { … … 85 85 } 86 86 } 87 #endif 88 /* }}} */ 87 /* }}} */ 88 static void xc_dprint_str_len(const char *str, int len) /* {{{ */ 89 { 90 const unsigned char *p = str; 91 int i; 92 for (i = 0; i < len; i ++) { 93 if (p[i] < 32 || p[i] == 127) { 94 fprintf(stderr, "\\%03o", (unsigned int) p[i]); 95 } 96 else { 97 fputc(p[i], stderr); 98 } 99 } 100 } 101 /* }}} */ 102 #endif 89 103 /* {{{ xc_zstrlen_char */ 90 104 static inline int xc_zstrlen_char(zstr s) … … 402 416 /* }}} */ 403 417 /* export: void xc_dprint(xc_entry_t *src, int indent TSRMLS_DC); :export {{{ */ 404 #ifdef XCACHE_HAVE_DPRINT418 #ifdef HAVE_XCACHE_DPRINT 405 419 void xc_dprint(xc_entry_t *src, int indent TSRMLS_DC) { 406 420 IFDPRINT(`INDENT()`'fprintf(stderr, "xc_entry_t:src");')
Note: See TracChangeset
for help on using the changeset viewer.

