X-Git-Url: https://git.cworth.org/git?p=ttt;a=blobdiff_plain;f=src%2Fttt.c;h=fba2ddee7d6cb9dc9685aea556355279e107914d;hp=b5ec1d52687840855a7a9bb4f80fe46d743f00fb;hb=f2187ebd49f78b84bd2dca6172abc81e54dda199;hpb=52bff07c451d6f5fbb2d9dd4f76f41479ba3c323 diff --git a/src/ttt.c b/src/ttt.c index b5ec1d5..fba2dde 100644 --- 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 * @@ -20,14 +20,14 @@ */ #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 */