sudoku/src/solver/internals.h

11 lines
180 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]);
#endif /* !INTERNALS_H */