Skip to content

Commit 188052c

Browse files
committed
doc(TPattern): add missing documentation
1 parent 8e813fe commit 188052c

File tree

1 file changed

+10
-4
lines changed

1 file changed

+10
-4
lines changed

libs/patterns/structs.h

+10-4
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,17 @@
44

55
#include "./macros.h"
66

7-
// TODO: Documentation
7+
/**
8+
* @struct TPattern
9+
* @brief Represents a pattern structure.
10+
*
11+
* This structure is used to represent a pattern in a 2D array. It contains a 2D array representing
12+
* the pattern, as well as other properties such as the number of rows and columns of the pattern.
13+
*/
814
typedef struct {
9-
char (*arr)[PATTERN_COLS];
10-
int rows;
11-
int cols;
15+
char (*arr)[PATTERN_COLS]; /** 2D array representing the pattern. */
16+
int rows; /** Number of rows of the pattern. */
17+
int cols; /** Number of columns of the pattern. */
1218
} TPattern;
1319

1420
#endif // PATTERNS_STRUCTS_H_INCLUDED

0 commit comments

Comments
 (0)