From cf175fc346f1b208766b1f55d3673a7b208f322a Mon Sep 17 00:00:00 2001 From: tslil clingman Date: Tue, 5 Oct 2021 18:22:23 -0400 Subject: Welcome geminict! This is a special interface to negamax_cnn1986 which is designed to generate output for use in a CGI tak interface to be used over gemini. Also in this commit is a reformating of the various source files to use the traditional tab width of 8 spaces. --- include/actions.h | 38 +++++++++++++++++++------------------- 1 file changed, 19 insertions(+), 19 deletions(-) (limited to 'include/actions.h') diff --git a/include/actions.h b/include/actions.h index 75c881e..8df9392 100644 --- a/include/actions.h +++ b/include/actions.h @@ -1,18 +1,18 @@ /* - This file is part of ct. + This file is part of ct. - 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 3 of the License, or - (at your option) any later version. + 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 3 of the License, 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. + 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 ct. If not, see . + You should have received a copy of the GNU General Public License + along with ct. If not, see . */ #ifndef ACTIONS_H @@ -39,19 +39,19 @@ typedef uint32_t action_t; #define A_GET_DATA0(a) (int8_t)(((a)>>A_DATA0_SHIFT) & 0xFF) #define A_GET_LOC(a) (uint8_t)(((a)>>A_LOC_SHIFT) & 0xFF) #define A_GET_TYPE(a) (uint8_t)((a) & 0xFF) -#define A_BUILD(type,loc,data0,data1) ((type) \ - | (loc) << A_LOC_SHIFT \ - | (data0) << A_DATA0_SHIFT \ - | (data1) << A_DATA1_SHIFT) +#define A_BUILD(type,loc,data0,data1) ((type) \ + | (loc) << A_LOC_SHIFT \ + | (data0) << A_DATA0_SHIFT \ + | (data1) << A_DATA1_SHIFT) typedef struct action_node_s { - struct action_node_s *next; - action_t action; + struct action_node_s *next; + action_t action; } action_node_t; typedef struct action_list_s { - struct action_node_s *head, *tail; - uint32_t length; + struct action_node_s *head, *tail; + uint32_t length; } action_list_t; // =================================================================== -- cgit v1.3.1