sudoku_bat/solver/shared.h

13 lines
207 B
C
Raw Permalink Normal View History

2024-05-25 23:08:47 +00:00
// These shared values apply to the whole program.
#ifndef SHARED_H
#define SHARED_H
#define SZ 9
#define N_CELLS (SZ * SZ)
// Unceremoniously crash the process. RIP!
void crash(const char* msg);
#endif