Searched refs:format (Results 1 – 4 of 4) sorted by relevance
/support/ |
A D | check.c | 28 print_failure (const char *file, int line, const char *format, va_list ap) in print_failure() argument 32 vprintf (format, ap); in print_failure() 39 const char *format, ...) in support_print_failure_impl() argument 43 va_start (ap, format); in support_print_failure_impl() 44 print_failure (file, line, format, ap); in support_print_failure_impl() 51 const char *format, ...) in support_exit_failure_impl() argument 56 va_start (ap, format); in support_exit_failure_impl() 57 print_failure (file, line, format, ap); in support_exit_failure_impl()
|
A D | xasprintf.c | 27 xasprintf (const char *format, ...) in xasprintf() argument 30 va_start (ap, format); in xasprintf() 32 if (vasprintf (&result, format, ap) < 0) in xasprintf()
|
A D | check.h | 71 const char *format, ...) 72 __attribute__ ((nonnull (1), format (printf, 3, 4))); 75 const char *format, ...) 76 __attribute__ ((noreturn, nonnull (2), format (printf, 4, 5)));
|
A D | support.h | 110 char *xasprintf (const char *format, ...) 111 __attribute__ ((format (printf, 1, 2), malloc)) __attr_dealloc_free
|
Completed in 14 milliseconds