summaryrefslogtreecommitdiff
path: root/include/log.h
blob: da9274b98e1a274f13527c6d4d11ce54a8dd20f0 (plain)
1
2
3
4
5
6
7
8
9
10
#pragma once

#define RINGBUF_SIZE 64 * 1024

typedef void (*console_callback_t)(char);

void vprintk(const char *message, __builtin_va_list args);
void printk(const char *message, ...);

void register_console_callback(console_callback_t callback);