]> git.cworth.org Git - ttt/blobdiff - src/ttt.c
2005-12-02 Richard D. Worth <richard@theworths.org>
[ttt] / src / ttt.c
index b5ec1d52687840855a7a9bb4f80fe46d743f00fb..fba2ddee7d6cb9dc9685aea556355279e107914d 100644 (file)
--- a/src/ttt.c
+++ b/src/ttt.c
@@ -1,4 +1,4 @@
-/* ttt.c - client-server tic-tac-toe game
+/* ttt.c - tic-tac-toe game client
  *
  * Copyright © 2005 Carl Worth
  *
  */
 
 #include "ttt.h"
+#include "ttt-args.h"
 
 int 
 main (int argc, char **argv)
 {
-    args_t args;
-    int args_first;
+    ttt_args_t args;
 
-    args_parse (&args, argc, argv, &args_first);
+    ttt_args_parse (&args, argc, argv);
 
     /* XXX: insert code here */