| 1 |
/*
|
| 2 |
* Copyright 2005-2006 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.9 2006/01/24 23:35:08 vapier Exp $
|
| 5 |
*
|
| 6 |
* Copyright 2005-2006 Ned Ludd - <solar@gentoo.org>
|
| 7 |
* Copyright 2005-2006 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 *qtemp_opts_help[] = {
|
| 17 |
COMMON_OPTS_HELP
|
| 18 |
};
|
| 19 |
|
| 20 |
static const char qtemp_rcsid[] = "$Id: template.c,v 1.9 2006/01/24 23:35:08 vapier Exp $";
|
| 21 |
#define qtemp_usage(ret) usage(ret, QTEMP_FLAGS, qtemp_long_opts, qtemp_opts_help, lookup_applet_idx("qtemp"))
|
| 22 |
|
| 23 |
|
| 24 |
int qtemp_main(int argc, char **argv)
|
| 25 |
{
|
| 26 |
int i;
|
| 27 |
|
| 28 |
DBG("argc=%d argv[0]=%s argv[1]=%s",
|
| 29 |
argc, argv[0], argc > 1 ? argv[1] : "NULL?");
|
| 30 |
|
| 31 |
while ((i = GETOPT_LONG(QTEMP, qtemp, "")) != -1) {
|
| 32 |
switch (i) {
|
| 33 |
COMMON_GETOPTS_CASES(qtemp)
|
| 34 |
}
|
| 35 |
}
|
| 36 |
|
| 37 |
|
| 38 |
|
| 39 |
return EXIT_SUCCESS;
|
| 40 |
}
|
| 41 |
|
| 42 |
#endif
|