diff options
author | Marvin Borner | 2023-05-26 18:08:09 +0200 |
---|---|---|
committer | Marvin Borner | 2023-05-26 18:09:39 +0200 |
commit | 464cca35825a02541efd46cfd3af91146c118d01 (patch) | |
tree | 2c9709cfbc9705d8d2c7eda481e81c6e1ff32ca7 /inc/log.h | |
parent | b31220aadc24ff137a4fe4bc39780ae63c58e11b (diff) |
Becoming aggressive
Diffstat (limited to 'inc/log.h')
-rw-r--r-- | inc/log.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/inc/log.h b/inc/log.h new file mode 100644 index 0000000..8d33658 --- /dev/null +++ b/inc/log.h @@ -0,0 +1,11 @@ +// Copyright (c) 2023, Marvin Borner <dev@marvinborner.de> +// SPDX-License-Identifier: MIT + +#ifndef BLOC_LOG_H +#define BLOC_LOG_H + +void debug(const char *format, ...); +void debug_enable(int enable); +void fatal(const char *format, ...) __attribute__((noreturn)); + +#endif |