@ -1,4 +1,3 @@
#include "types.h"
#include <stdio.h>
#include "html.h"
@ -1,6 +1,8 @@
#ifndef html_2b894a04_3a0c_4223_bf83_6ab40c0f5e57_h__
#define html_2b894a04_3a0c_4223_bf83_6ab40c0f5e57_h__
void genHTML(sudoku * s,FILE * fp);
#include "input.h"
#include <string.h>
#ifndef input_2b894a04_3a0c_4223_bf83_6ab40c0f5e57_h__
#define input_2b894a04_3a0c_4223_bf83_6ab40c0f5e57_h__
/**
* Reads the Sudoku from file
* @param path The File to read from
#ifndef imput_nstd_2b894a04_3a0c_4223_bf83_6ab40c0f5e57_h__
#define imput_nstd_2b894a04_3a0c_4223_bf83_6ab40c0f5e57_h__
@ -19,7 +19,6 @@
* MA 02110-1301, USA.
*/
#include "main.h"
#include "input_nstd.h"
#ifndef main_2b894a04_3a0c_4223_bf83_6ab40c0f5e57_h__
#define main_2b894a04_3a0c_4223_bf83_6ab40c0f5e57_h__
int main(int argc, char **argv);
void readOptions(int argc, char **argv, options * o);
void newStandard(options * o);
#include "output.h"
#ifndef output_2b894a04_3a0c_4223_bf83_6ab40c0f5e57_h__
#define output_2b894a04_3a0c_4223_bf83_6ab40c0f5e57_h__
* Write the sudoku to a file
* @param fn The Filename
#include "output_nstd.h"
#ifndef output_nstd_2b894a04_3a0c_4223_bf83_6ab40c0f5e57_h__
#define output_nstd_2b894a04_3a0c_4223_bf83_6ab40c0f5e57_h__
* Print the Sudoku on stdout using unicode borders
* @param s The Sudoku
#include "output_std.h"
#ifndef output_std_2b894a04_3a0c_4223_bf83_6ab40c0f5e57_h__
#define output_std_2b894a04_3a0c_4223_bf83_6ab40c0f5e57_h__
#include "solver.h"
int sl_loes(sudoku* s, options * o) {
#ifndef solver_2b894a04_3a0c_4223_bf83_6ab40c0f5e57_h__
#define solver_2b894a04_3a0c_4223_bf83_6ab40c0f5e57_h__
* Tries to solve the Sudoku with logic
* @param s the sudokue to solve
#include "solver_nstd.h"
int solver_nstd_check_nums(sudoku* s,int zahl,int z, int sp) {
#ifndef solver_nstd_2b894a04_3a0c_4223_bf83_6ab40c0f5e57_h__
#define solver_nstd_2b894a04_3a0c_4223_bf83_6ab40c0f5e57_h__
* Checks if there are other posibilities for the number if not return 1
* @param s The sudoku struct
#include "solver_std.h"
int solver_check_nums(sudoku* s,int zahl,int z, int sp) {
#ifndef solver_std_2b894a04_3a0c_4223_bf83_6ab40c0f5e57_h__
#define solver_std_2b894a04_3a0c_4223_bf83_6ab40c0f5e57_h__