AnnaConnect/logic.h

16 lines
242 B
C

/* SPDX-License-Identifier: GPL-2.0-only */
#pragma once
#include "config.h"
#include "types.h"
extern void playMove(
board_t *boardptr,
const int column
);
extern void calcWins(
wins_t *wins,
const board_t board,
const int column
);