Login
7 branches 0 tags
Ben (Win10) Add support for DOS using Watcom 113d5d2 3 years ago 475 Commits
nujel / lib / misc / pf.h
#ifndef NUJEL_LIB_MISC_PF
#define NUJEL_LIB_MISC_PF
#include "../common.h"
#include <stdio.h>
#include <stdarg.h>

char *vspf(char *buf, char *bufEnd, const char *format, va_list va);
char *spf(char *buf, char *bufEnd, const char *format, ...);
void vfpf(FILE *fp, const char *format, va_list va);
void fpf(FILE *f, const char *format, ...);
void epf(const char *format, ...);
void pf(const char *format, ...);

#endif