-
Notifications
You must be signed in to change notification settings - Fork 0
/
macros.h
29 lines (25 loc) · 869 Bytes
/
macros.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#ifndef LIBS_PATTERNS_MACROS_H_INCLUDED
#define LIBS_PATTERNS_MACROS_H_INCLUDED
/**
* @def PATTERN_ROWS
* @brief Defines the number of rows in a 2D array pattern.
*
* This macro is used to define the number of rows in a 2D array pattern.
* It is typically used in conjunction with the `PATTERN_COLS` macro to define
* the size of a pattern.
*
* @warning The value of `PATTERN_ROWS` should be a positive integer.
*/
#define PATTERN_ROWS 13
/**
* @def PATTERN_COLS
* @brief Defines the number of columns in a 2D array pattern.
*
* This macro is used to define the number of columns in a 2D array pattern.
* It is typically used in conjunction with the `PATTERN_ROWS` macro to define
* the size of a pattern.
*
* @warning The value of `PATTERN_COLS` should be a positive integer.
*/
#define PATTERN_COLS 36
#endif // LIBS_PATTERNS_MACROS_H_INCLUDED