18 lines
300 B
C
18 lines
300 B
C
/* Copyright (C) vx_clutch
|
|
*
|
|
* This file is part of yait
|
|
*
|
|
* This project and file is licenced under the BSD-3-Clause licence.
|
|
* <https://opensource.org/license/bsd-3-clause>
|
|
*/
|
|
|
|
#ifndef PRINT_H
|
|
#define PRINT_H
|
|
|
|
#include <stdarg.h>
|
|
#include <stdio.h>
|
|
|
|
int printfn (char *format, ...);
|
|
|
|
#endif
|