pike.git
/
src
/
combine_path.h
version
»
Context lines:
10
20
40
80
file
none
3
pike.git/src/combine_path.h:274:
#define F_FUNC(X) PIKE_CONCAT(f_,X) void F_FUNC(COMBINE_PATH)(INT32 args) { int e; int root=0; struct string_builder ret; ONERROR tmp;
-
check_all_args(
NULL
,args,
+
check_all_args(
DEFINETOSTR(COMBINE_PATH)
,
args,
BIT_STRING, BIT_STRING | BIT_MANY | BIT_VOID, 0); init_string_builder(&ret, 0); SET_ONERROR(tmp, free_string_builder, &ret); #if COMBINE_PATH_DEBUG > 0 for(e=0; e < args; e++) { fprintf(stderr, "combine_path(), Arg #%d: \"%s\"[%d bytes]\n", e, Pike_sp[e-args].u.string->str, Pike_sp[e-args].u.string->len); }