Login
7 branches 0 tags
Ben (X13/Void) Removed problematic clang32 target from CI 504460a 3 years ago 490 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