rename util.h -> misc.h (2)

This commit is contained in:
2024-06-23 19:22:22 +02:00
parent a7311a546f
commit 3a6c1d11c0
4 changed files with 3 additions and 23 deletions

View File

@@ -21,9 +21,7 @@
#include <bug.h>
#include "chessdefs.h"
#include "util.h"
//#include "piece.h"
//#include "bitboard.h"
#include "misc.h"
#include "position.h"
#include "fen.h"

View File

@@ -18,7 +18,7 @@
#include <bitops.h>
#include "chessdefs.h"
#include "util.h"
#include "misc.h"
#include "position.h"
#include "piece.h"
#include "hash.h"

View File

@@ -27,7 +27,7 @@
#include "hyperbola-quintessence.h"
#include "fen.h"
#include "piece.h"
#include "util.h"
#include "misc.h"
#include "board.h"
#include "attack.h"

View File

@@ -1,18 +0,0 @@
/* util.c - various util functions.
*
* Copyright (C) 2024 Bruno Raoult ("br")
* Licensed under the GNU General Public License v3.0 or later.
* Some rights reserved. See COPYING.
*
* You should have received a copy of the GNU General Public License along with this
* program. If not, see <https://www.gnu.org/licenses/gpl-3.0-standalone.html>.
*
* SPDX-License-Identifier: GPL-3.0-or-later <https://spdx.org/licenses/GPL-3.0-or-later.html>
*
*/
#include <stdio.h>
#include <stdlib.h>
#include "util.h"
#include "bitboard.h"