sudoku_bat/solver/shared.h

13 lines
207 B
C

// 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