Files
yait/core/print.h
2025-07-14 23:07:13 -04:00

10 lines
107 B
C

#ifndef PRINT_H
#define PRINT_H
#include <stdarg.h>
#include <stdio.h>
int printfn(char *, ...);
#endif