MCPcopy Index your code
hub / github.com/NetHack/NetHack / vfprintf

Function vfprintf

outdated/sys/wince/celib.c:776–789  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

774}
775
776int __cdecl vfprintf(FILE *f, const char *format, va_list args)
777{
778 char buf[4096];
779 int retval;
780
781 if (!f || !format)
782 return 0;
783
784 retval = vsprintf(buf, format, args);
785
786 write((int) f, buf, strlen(buf));
787
788 return retval;
789}
790
791int __cdecl fgetc(FILE *f)
792{

Callers 4

logDebugFunction · 0.85
fprintfFunction · 0.85
logDebugFunction · 0.85
raw_printfFunction · 0.85

Calls 1

writeFunction · 0.85

Tested by

no test coverage detected