#include <xtend/proc.h>
-lxtend
void va_usage(const char *format_string, ...)
format_string: printf-style format string
Additional arguments to match placeholders in format_string
va_usage() is a simple convenience function that takes a printf-style variable
argument list, prints a message to stderr, and terminates the proces with an
exit status of EX_USAGE. The message should indicate correct command-line
usage of the calling program as conventional for Unix commands.
Does not return, terminates the calling process
printf(3), vfprintf(3), exit(3), sysexits(3)