PatchworkOS
Loading...
Searching...
No Matches
debug.h
Go to the documentation of this file.
1#pragma once
2
5
25void aml_debug_error(aml_term_list_ctx_t* ctx, const char* function, const char* format, ...);
26
30#define AML_DEBUG_ERROR(ctx, format, ...) aml_debug_error(ctx, __func__, format, ##__VA_ARGS__)
31
void aml_debug_error(aml_term_list_ctx_t *ctx, const char *function, const char *format,...)
Log a debug error message with context information.
Definition debug.c:96
Context for reading a TermList.
Definition term.h:37