We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8e813fe commit 188052cCopy full SHA for 188052c
libs/patterns/structs.h
@@ -4,11 +4,17 @@
4
5
#include "./macros.h"
6
7
-// TODO: Documentation
+/**
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
+ */
14
typedef struct {
- char (*arr)[PATTERN_COLS];
- int rows;
- 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. */
18
} TPattern;
19
20
#endif // PATTERNS_STRUCTS_H_INCLUDED
0 commit comments