Home | History | Annotate | Download | only in radius

Lines Matching defs:ap

19 #include "ap/ap_config.h"
367 va_list ap;
371 va_start(ap, fmt);
372 buflen = vsnprintf(NULL, 0, fmt, ap) + 1;
373 va_end(ap);
378 va_start(ap, fmt);
379 vsnprintf(buf, buflen, fmt, ap);
380 va_end(ap);