Leap, Difference of Squares, Grains, Collatz Conjecture, Queen Attack, Darts, Hamming, and Space Age completed yesterday. Binary and Linked List completed today.
8 lines
174 B
C
8 lines
174 B
C
#ifndef MINESWEEPER_H
|
|
#define MINESWEEPER_H
|
|
#include <stddef.h>
|
|
|
|
char **annotate(const char **minefield, const size_t rows);
|
|
void free_annotation(char **annotation);
|
|
|
|
#endif
|