Starship/include/PR/xstdio.h

18 lines
386 B
C
Raw Normal View History

#ifndef _XSTDIO_H
#define _XSTDIO_H
#include <libultraship.h>
#include <stdio.h>
2023-10-18 15:07:13 +03:00
#define FLAGS_SPACE 1
#define FLAGS_PLUS 2
#define FLAGS_MINUS 4
#define FLAGS_HASH 8
#define FLAGS_ZERO 16
typedef char *outfun(char*,const char*,size_t);
2023-10-18 15:07:13 +03:00
int _Printf(outfun prout, char *arg, const char *fmt, va_list args);
void _Litob(_Pft *args, char type);
void _Ldtob(_Pft* px, char code);
2023-10-18 15:07:13 +03:00
#endif