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

Function raw_printf

util/sfctool.c:697–707  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

695/* provided for linkage only */
696
697DISABLE_WARNING_FORMAT_NONLITERAL
698
699void
700raw_printf(const char *line, ...)
701{
702 va_list the_args;
703
704 va_start(the_args, line);
705 vfprintf(stdout, line, the_args);
706 va_end(the_args);
707}
708
709void
710error(const char *s, ...)

Callers

nothing calls this directly

Calls 1

vfprintfFunction · 0.85

Tested by

no test coverage detected