20 lines
427 B
C
20 lines
427 B
C
|
/*
|
||
|
* @file _usage.c
|
||
|
* @brief standardize help/usage output across all our programs
|
||
|
* @internal
|
||
|
*
|
||
|
* Copyright 2007 Gentoo Foundation
|
||
|
* Released under the GPLv2
|
||
|
*/
|
||
|
|
||
|
static void usage (int exit_status)
|
||
|
{
|
||
|
int i;
|
||
|
printf ("Usage: " APPLET " [options]\n\n");
|
||
|
printf ("Options: [" getoptstring "]\n");
|
||
|
for (i = 0; longopts[i].name; ++i)
|
||
|
printf (" -%c, --%s\n", longopts[i].val, longopts[i].name);
|
||
|
exit (exit_status);
|
||
|
}
|
||
|
|