Skip to content

Commit 0eaf1bc

Browse files
committed
doc(drawPattern): add missing documentation
1 parent f80a850 commit 0eaf1bc

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

libs/utilities.h

+8-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,14 @@ typedef struct {
2525
int generation; /** Represents the generation number. */
2626
} TGame;
2727

28-
// TODO
28+
/**
29+
* @brief Draws a specified pattern on a Conway's Game of Life board.
30+
*
31+
* @param pGame Pointer to the Conway's Game of Life structure where the pattern will be drawn.
32+
* @param pattern Pattern to be drawn.
33+
*
34+
* @warning The pattern must be `glider`, `toad`, `press`, or `glider cannon`.
35+
*/
2936
void drawPattern(TGame* pGame, char* pattern);
3037

3138
// TODO

0 commit comments

Comments
 (0)