13 lines
193 B
C
13 lines
193 B
C
|
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
||
|
|
||
|
#ifndef DEBUG_H_
|
||
|
#define DEBUG_H_
|
||
|
|
||
|
#include <stdbool.h>
|
||
|
|
||
|
extern int log_level;
|
||
|
|
||
|
int map_log_level(int verbose, bool quiet);
|
||
|
|
||
|
#endif // DEBUG_H_
|