2 * Copyright (C) 2008-2011 Andre Noll <maan@systemlinux.org>
4 * Licensed under the GPL v2. For licencing details see COPYING.
7 /** \file ggo.h Functions and structures for help text handling. */
10 * Used by exexutables that can not use gengetopt's generated help function.
13 /** The lines of the short help text. */
14 const char **short_help
;
15 /** The lines of the detailed help text. */
16 const char **detailed_help
;
19 void ggo_print_help(struct ggo_help
*help
, int detailed_help
);
20 __printf_1_2
void printf_or_die(const char *fmt
, ...);