OCRudoku  v1.0
Resolve word grid with ease
Loading...
Searching...
No Matches
gridResolver.h
Go to the documentation of this file.
1#pragma once
2
3#include <string.h>
4#include <stdio.h>
5#include <stdlib.h>
6#include <stddef.h>
7#include <stdlib.h>
8#include <err.h>
9
10void toUppercase(char* word);
11void printCoordinates(int startRow, int startCol, int endRow, int endCol);
12int readFromFile(const char* filename, char*** board, int* boardSize, int** boardColSize);
13int findCoordinates(char** board, int boardSize, int* boardColSize, const char* word, int* start_row, int* start_col, int* end_row, int* end_col);
int readFromFile(const char *filename, char ***board, int *boardSize, int **boardColSize)
Definition gridResolver.c:44
int findCoordinates(char **board, int boardSize, int *boardColSize, const char *word, int *start_row, int *start_col, int *end_row, int *end_col)
Definition gridResolver.c:99
void printCoordinates(int startRow, int startCol, int endRow, int endCol)
Definition gridResolver.c:29
void toUppercase(char *word)
Definition gridResolver.c:10