X-Git-Url: https://git.cworth.org/git?a=blobdiff_plain;f=src%2Fttt.h;h=c3e8c5c25fa88abb9c1b91df910ebc889bc7f536;hb=306a4054b4a0732ff42ab2548ffc020043ab3cf9;hp=316d74494c6e34ae1fde8d7684cbfc84f5d24cea;hpb=5d56d3cd8b4685e905ed604277ac9cb32c876127;p=ttt diff --git a/src/ttt.h b/src/ttt.h index 316d744..c3e8c5c 100644 --- a/src/ttt.h +++ b/src/ttt.h @@ -56,14 +56,20 @@ do { \ #define TTT_PRINTF_FORMAT(fmt_index, va_index) #endif -#include "ttt-args.h" #include "x.h" typedef int ttt_bool_t; +#define FALSE 0 +#define TRUE 1 + typedef enum { TTT_STATUS_SUCCESS = 0, - TTT_STATUS_FAILURE + TTT_STATUS_FAILURE, + TTT_STATUS_EOF } ttt_status_t; +typedef struct _ttt_server ttt_server_t; +typedef struct _ttt_client ttt_client_t; + #endif