Login
7 branches 0 tags
Ben (Win10) Made release-wasm GH CI build depend on a successful linux build and test run 4389c19 3 years ago 741 Commits
nujel / lib / printer.h
#ifndef NUJEL_LIB_PRINTER
#define NUJEL_LIB_PRINTER
#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