Beginning of implementation of a ctypes-based interface to libboard, which is a much cleaner set of Go routines than I hacked together originally. Including a copy of gnugo 3.8 so we can build a dynamic version of libboard.

This commit is contained in:
2012-04-12 13:46:27 -04:00
parent 55dbed09f5
commit 8b772255a1
2259 changed files with 388094 additions and 291 deletions

11
gnugo/utils/README Normal file
View File

@ -0,0 +1,11 @@
The files getopt.h, getopt.c, getopt1.c are from glibc-2.1.2,
The getopt functions are included because a lot of platforms do not have
getopt functions for processing long options. Some platforms (VC,MINGW32)
don't have the getopt function that processes single letter options.
getopt.h was renamed to gg-getopt.h to avoid conflicts with system provided
getopt.h files.
Function getopt was renamed gg_getopt to avoid conflicts with the system
provided getopt function.