File tree 1 file changed +18
-0
lines changed
1 file changed +18
-0
lines changed Original file line number Diff line number Diff line change 10
10
*/
11
11
#define ALIVE_CELL 'o'
12
12
13
+ /**
14
+ * @def ALIVE_CELL_NG
15
+ * @brief Represents a cell that is going to be alive in the next generation.
16
+ *
17
+ * @warning The value of `ALIVE_CELL_NG` must be a single character and must not be equal to
18
+ * `ALIVE_CELL`, `DEAD_CELL`, or `DEAD_CELL_NG` macros.
19
+ */
20
+ #define ALIVE_CELL_NG '1'
21
+
13
22
/**
14
23
* @def DEAD_CELL
15
24
* @brief Represents a dead cell.
18
27
*/
19
28
#define DEAD_CELL ' '
20
29
30
+ /**
31
+ * @def DEAD_CELL_NG
32
+ * @brief Represents a cell that is going to be dead in the next generation.
33
+ *
34
+ * @warning The value of `DEAD_CELL_NG` must be a single character and must not be equal to
35
+ * `ALIVE_CELL`, `ALIVE_CELL_NG`, or `DEAD_CELL` macros.
36
+ */
37
+ #define DEAD_CELL_NG '0'
38
+
21
39
/**
22
40
* @def PATTERN_ROWS
23
41
* @brief Defines the number of rows in a 2D array pattern.
You can’t perform that action at this time.
0 commit comments