We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9b34f70 commit 159c0ffCopy full SHA for 159c0ff
constants.h
@@ -10,6 +10,8 @@
10
#include <limits.h>
11
#include <stdbool.h>
12
13
+//#define _DEBUG
14
+
15
typedef uint8_t byte_t;
16
17
enum return_code {
@@ -31,7 +33,5 @@ enum adh_constants {
31
33
32
34
static const char BIT_1 = '1';
35
static const char BIT_0 = '0';
-#define _DEBUG
-
36
37
#endif //ALGO_CONSTANTS_H
test/test.c
@@ -40,7 +40,7 @@ static const char * TEST_FILES[] = {
40
* Main function
41
*/
42
int main(int argc, char* argv[]) {
43
- set_log_level(LOG_TRACE);
+ set_log_level(LOG_INFO);
44
test_bit_helpers();
45
test_all_files();
46
}
0 commit comments