summaryrefslogtreecommitdiff
path: root/load.h
blob: 90747199ff7a4ea692f16b394de5b4b148b2fe3b (plain)
1
2
3
4
5
6
7
8
9
10
#ifndef SUDOKU_LOAD_H
#define SUDOKU_LOAD_H

#include <stdio.h>

#include "cell.h"

int load(FILE *f, struct cell (*b)[9][9]);

#endif /* SUDOKU_LOAD_H */