Login
7 branches 0 tags
Ben (Win10) Variadic functions now use the scheme notation 0a67f3d 4 years ago 313 Commits
nujel / lib / misc / pf.h
#pragma once
#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 pf(const char *format, ...);