diff options
author | Luke T. Shumaker <lukeshu@lukeshu.com> | 2024-12-08 08:28:16 -0700 |
---|---|---|
committer | Luke T. Shumaker <lukeshu@lukeshu.com> | 2024-12-08 08:28:16 -0700 |
commit | 96a751d8a5d20b2acea5ae8d10ac3d051466c2c3 (patch) | |
tree | 1ce291df34d78acd6f1619a779abbd4f06134e26 /libmisc/include | |
parent | afe6542b30def82573e070371281c05dc593a739 (diff) | |
parent | b9ebe41358244caa9334e72ca4e3c8c7a14c86e7 (diff) |
Merge commit 'b9ebe41358244caa9334e72ca4e3c8c7a14c86e7'
Diffstat (limited to 'libmisc/include')
-rw-r--r-- | libmisc/include/libmisc/log.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libmisc/include/libmisc/log.h b/libmisc/include/libmisc/log.h index 37da20b..c1e4a05 100644 --- a/libmisc/include/libmisc/log.h +++ b/libmisc/include/libmisc/log.h @@ -7,6 +7,8 @@ #ifndef _LIBMISC_LOG_H_ #define _LIBMISC_LOG_H_ +#include <stdint.h> /* for uint8_t */ + #ifndef LOG_NAME #error "each compilation unit that includes <libmisc/log.h> must define LOG_NAME" #endif @@ -28,4 +30,6 @@ #define debugf(fmt, ...) do { if (_LOG_CAT3(CONFIG_, LOG_NAME, _DEBUG) && !_LOG_NDEBUG) \ _log_printf("debug: " _LOG_STR(LOG_NAME) ": " fmt "\n" __VA_OPT__(,) __VA_ARGS__); } while (0) +const char *const_byte_str(uint8_t b); + #endif /* _LIBMISC_LOG_H_ */ |