X-Git-Url: https://git.cworth.org/git?a=blobdiff_plain;ds=inline;f=src%2Fttt.c;fp=src%2Fttt.c;h=f211ae6da0a782ad9ab7ab556a34e31f32e321ee;hb=5d56d3cd8b4685e905ed604277ac9cb32c876127;hp=0000000000000000000000000000000000000000;hpb=ded32923a25488449be27687013845d7fa0e9e5e;p=ttt diff --git a/src/ttt.c b/src/ttt.c new file mode 100644 index 0000000..f211ae6 --- /dev/null +++ b/src/ttt.c @@ -0,0 +1,34 @@ +/* ttt.c - tic-tac-toe game client + * + * 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 + */ + +#include "ttt.h" + +int +main (int argc, char **argv) +{ + ttt_args_t args; + + ttt_args_parse (&args, argc, argv); + + /* XXX: insert code here */ + + return 0; +}