| 1 |
/* |
| 2 |
* Copyright 2005-2010 Gentoo Foundation |
| 3 |
* Distributed under the terms of the GNU General Public License v2 |
| 4 |
* $Header: /var/cvsroot/gentoo-projects/portage-utils/template.c,v 1.14 2010/04/07 05:58:16 solar Exp $ |
| 5 |
* |
| 6 |
* Copyright 2005-2010 Ned Ludd - <solar@gentoo.org> |
| 7 |
* Copyright 2005-2010 Mike Frysinger - <vapier@gentoo.org> |
| 8 |
*/ |
| 9 |
|
| 10 |
#ifdef APPLET_qtemp |
| 11 |
|
| 12 |
#define QTEMP_FLAGS "" COMMON_FLAGS |
| 13 |
static struct option const qtemp_long_opts[] = { |
| 14 |
COMMON_LONG_OPTS |
| 15 |
}; |
| 16 |
static const char * const qtemp_opts_help[] = { |
| 17 |
COMMON_OPTS_HELP |
| 18 |
}; |
| 19 |
|
| 20 |
static const char qtemp_rcsid[] = "$Id: template.c,v 1.14 2010/04/07 05:58:16 solar Exp $"; |
| 21 |
#define qtemp_usage(ret) usage(ret, QTEMP_FLAGS, qtemp_long_opts, qtemp_opts_help, lookup_applet_idx("qtemp")) |
| 22 |
|
| 23 |
int qtemp_main(int argc, char **argv) |
| 24 |
{ |
| 25 |
int i; |
| 26 |
|
| 27 |
DBG("argc=%d argv[0]=%s argv[1]=%s", |
| 28 |
argc, argv[0], argc > 1 ? argv[1] : "NULL?"); |
| 29 |
|
| 30 |
while ((i = GETOPT_LONG(QTEMP, qtemp, "")) != -1) { |
| 31 |
switch (i) { |
| 32 |
COMMON_GETOPTS_CASES(qtemp) |
| 33 |
} |
| 34 |
} |
| 35 |
|
| 36 |
return EXIT_SUCCESS; |
| 37 |
} |
| 38 |
|
| 39 |
#else |
| 40 |
DEFINE_APPLET_STUB(qtemp) |
| 41 |
#endif |