Code

bootstrap.sh: Do not install libltdl.
[template.git] / src / foobar.c
index c4205e9f7e1bf5d451eb4f0b680235427afb74af..e979045ffe766859dabeee6184ff1ab9da971b0f 100644 (file)
  * A short description of this module...
  */
 
-#if HAVE_CONFIG_H
-#      include "config.h"
-#endif /* HAVE_CONFIG_H */
-
 #include "foobar.h"
 
-#if HAVE_LIBGEN_H
-#      include <libgen.h>
-#else /* HAVE_LIBGEN_H */
-#      define basename(path) (path)
-#endif /* ! HAVE_LIBGEN_H */
-
-#include <stdio.h>
-#include <stdlib.h>
-
-#include <unistd.h>
-
-void exit_usage(char *name, int status)
-{
-       printf("Usage: %s <options>\n"
-
-                       "\nOptions:\n"
-                       "  -h    display this help and exit\n"
-                       "  -V    display the version number and copyright\n"
-
-                       "\nfoobar "VERSION", http://tokkee.org\n", basename(name));
-       exit(status);
-} /* exit_usage */
-
-void exit_version(void)
-{
-       printf("foobar version "VERSION", built "BUILD_DATE"\n"
-                       "Copyright (C) 2008 Sebastian Harl <sh@tokkee.org>\n"
-
-                       "\nThis is free software under the terms of the GNU GPLv2; see "
-                       "the source for\ncopying conditions. There is NO WARRANTY; not "
-                       "even for MERCHANTABILITY or\nFITNESS FOR A PARTICULAR "
-                       "PURPOSE.\n");
-       exit(0);
-} /* exit_version */
-
-int main(int argc, char **argv)
-{
-       while (42) {
-               int opt = getopt(argc, argv, "hV");
-
-               if (-1 == opt)
-                       break;
-
-               switch (opt) {
-                       case 'h':
-                               exit_usage(argv[0], 0);
-                               break;
-                       case 'V':
-                               exit_version();
-                               break;
-                       default:
-                               exit_usage(argv[0], 1);
-               }
-       }
-
-       if (optind < argc)
-               exit_usage(argv[0], 1);
-       return 0;
-} /* main */
-
 /* vim: set tw=78 sw=4 ts=4 noexpandtab : */