]> git.cworth.org Git - ttt/blobdiff - src/args.h
* src/args.c: Renamed ttt-args.c
[ttt] / src / args.h
diff --git a/src/args.h b/src/args.h
deleted file mode 100644 (file)
index 6172a9e..0000000
+++ /dev/null
@@ -1,41 +0,0 @@
-/* args.h - Parse command-line arguments for ttt using getopt
- *
- * Copyright © 2005 Carl Worth
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2, or (at your option)
- * any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software Foundation,
- * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
- *
- * Author: Carl Worth <cworth@cworth.org>
- */
-
-#ifndef ARGS_H
-#define ARGS_H
-
-#ifdef HAVE_CONFIG_H
-#include "config.h"
-#endif
-
-typedef struct args
-{
-    /* XXX: SAMPLE:
-    char *display;
-    */
-    char *file;
-
-} args_t;
-
-int
-args_parse(args_t *args, int argc, char *argv[], int *args_first);
-
-#endif