stego.git
bits.h

/* stego - chess engine
* Copyright (C) 2025 ArcNyxx <me@arcnyxx.net>
* see LICENCE file for licensing information */
#ifndef BITS_H
#define BITS_H
#include "stego.h"
int lsb(u64 bb);
int msb(u64 bb);
int popcount(u64 bb);
#endif /* BITS_H */