Newer
Older
UbixOS / Dump / hybos / include / _printf.h
@cwolsen cwolsen on 31 Oct 2018 287 bytes Big Dump
#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