summaryrefslogtreecommitdiff
path: root/include/PR/xstdio.h
blob: e54d70ee627191d0a4226aa20e94c21ac590329e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef _XSTDIO_H
#define _XSTDIO_H
#include <libultraship.h>
#include <stdio.h>

#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);

int _Printf(outfun prout, char *arg, const char *fmt, va_list args);
void _Litob(_Pft *args, char type);
void _Ldtob(_Pft* px, char code);

#endif