2022-11-19 12:30:36 +01:00
|
|
|
#pragma once
|
2022-11-19 17:18:51 +01:00
|
|
|
#include <Attributes.h>
|
2022-11-19 16:13:25 +01:00
|
|
|
#include <Result.h>
|
2022-11-19 12:30:36 +01:00
|
|
|
#include <stdarg.h>
|
|
|
|
|
2022-11-19 16:13:25 +01:00
|
|
|
typedef Result<void> (*callback_t)(char, void*);
|
2022-11-19 15:53:58 +01:00
|
|
|
|
2022-11-19 16:13:25 +01:00
|
|
|
Result<usize> cstyle_format(const char* format, callback_t callback, void* arg, va_list ap);
|