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

Function fprintf

outdated/sys/wince/celib.c:761–774  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

759}
760
761int __cdecl fprintf(FILE *f, const char *format, ...)
762{
763 int retval;
764 va_list args;
765
766 if (!f || !format)
767 return 0;
768
769 va_start(args, format);
770 retval = vfprintf(f, format, args);
771 va_end(args);
772
773 return retval;
774}
775
776int __cdecl vfprintf(FILE *f, const char *format, va_list args)
777{

Callers 15

trace_procs_initFunction · 0.85
trace_init_nhwindowsFunction · 0.85
trace_player_selectionFunction · 0.85
trace_asknameFunction · 0.85
trace_get_nh_eventFunction · 0.85
trace_exit_nhwindowsFunction · 0.85
trace_suspend_nhwindowsFunction · 0.85
trace_resume_nhwindowsFunction · 0.85
trace_create_nhwindowFunction · 0.85
trace_clear_nhwindowFunction · 0.85
trace_display_nhwindowFunction · 0.85
trace_destroy_nhwindowFunction · 0.85

Calls 1

vfprintfFunction · 0.85

Tested by

no test coverage detected