cosmopolitan/tool/plinko/lib/printf.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

13 lines
391 B
C
Raw Normal View History

2022-04-08 03:30:22 +00:00
#ifndef COSMOPOLITAN_TOOL_PLINKO_LIB_PRINTF_H_
#define COSMOPOLITAN_TOOL_PLINKO_LIB_PRINTF_H_
COSMOPOLITAN_C_START_
int Printf(const char *, ...);
int Fprintf(int, const char *, ...);
int Fnprintf(int, int, const char *, ...);
int Vfprintf(const char *, va_list, int);
int Vfnprintf(const char *, va_list, int, int);
COSMOPOLITAN_C_END_
#endif /* COSMOPOLITAN_TOOL_PLINKO_LIB_PRINTF_H_ */