Files
yait/lib/print.h
2025-07-13 18:20:10 -04:00

10 lines
107 B
C

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