sudoku/src/solver/internals.h

12 lines
254 B
C

#ifndef INTERNALS_H
#define INTERNALS_H
#include <stdbool.h>
struct sudoku;
bool update_sets(const struct sudoku *grid, bool possibilities[9][9][9]);
bool single_occurrence(struct sudoku *grid, bool possibilities[9][9][9]);
#endif /* !INTERNALS_H */