Newer
Older
ubixos / Dump / hybos / include / _printf.h
@Christopher W. Olsen Christopher W. Olsen on 5 Nov 2018 268 bytes Sync
#ifndef __TL__PRINTF_H
#define	__TL__PRINTF_H

#ifdef __cplusplus
extern "C"
{
#endif

#include <_va_list.h>

typedef int (*fnptr_t)(unsigned c, void **helper);

int do_printf(const char *fmt, va_list args, fnptr_t fn, void *ptr);

#ifdef __cplusplus
}
#endif

#endif