Home | History | Annotate | Download | only in libc

Lines Matching defs:ctxt

42     struct snprintf_ctxt *ctxt = cookie;
44 if(ctxt->avail > 0) {
45 *ctxt->next++ = n;
46 ctxt->avail--;
53 struct snprintf_ctxt ctxt;
57 ctxt.avail = sz - 1;
58 ctxt.next = str;
61 __xprintf(fmt, ap, snprintf_putc, &ctxt);
64 *ctxt.next = 0;
65 return ctxt.next - str;