Changeset 1174 for trunk/util/xc_trace.c
- Timestamp:
- 2012-11-13T13:30:21+01:00 (6 months ago)
- File:
-
- 1 edited
-
trunk/util/xc_trace.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/util/xc_trace.c
r990 r1174 1 #include "php.h" 1 2 #include "xc_trace.h" 2 3 #include <stdio.h> 3 4 #include <stdarg.h> 5 #include <string.h> 4 6 7 const char *xc_trace_get_basename(const char *path) /* {{{ */ 8 { 9 const char *last_separator = strrchr(path, PHP_DIR_SEPARATOR); 10 return last_separator ? last_separator + 1 : path; 11 } 12 /* }}} */ 5 13 int xc_vtrace(const char *fmt, va_list args) /* {{{ */ 6 14 {
Note: See TracChangeset
for help on using the changeset viewer.

