XCache is a fast, stable PHP opcode cacher that has been proven and is now running on production servers under high load.
https://xcache.lighttpd.net/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
491 B
23 lines
491 B
#define MAX_DUP_STR_LEN 256 |
|
|
|
static inline size_t xc_zstrlen_char(const_zstr s) /* {{{ */ |
|
{ |
|
return strlen(ZSTR_S(s)); |
|
} |
|
/* }}} */ |
|
#ifdef IS_UNICODE |
|
static inline size_t xc_zstrlen_uchar(zstr s) /* {{{ */ |
|
{ |
|
return u_strlen(ZSTR_U(s)); |
|
} |
|
/* }}} */ |
|
static inline size_t xc_zstrlen(int type, const_zstr s) /* {{{ */ |
|
{ |
|
return type == IS_UNICODE ? xc_zstrlen_uchar(s) : xc_zstrlen_char(s); |
|
} |
|
/* }}} */ |
|
#else |
|
/* {{{ xc_zstrlen */ |
|
#define xc_zstrlen(dummy, s) xc_zstrlen_char(s) |
|
/* }}} */ |
|
#endif
|
|
|