MCPcopy Create free account
hub / github.com/NetHack/NetHack / tty_raw_print

Function tty_raw_print

win/tty/wintty.c:4003–4018  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

4001#endif /* NO_TERMS */
4002
4003void
4004tty_raw_print(const char *str)
4005{
4006 HUPSKIP();
4007 if (ttyDisplay)
4008 ttyDisplay->rawprint++;
4009 else if (*str)
4010 iflags.raw_printed++;
4011 print_vt_code2(AVTC_SELECT_WINDOW, NHW_BASE);
4012#if defined(MICRO) || defined(WIN32CON)
4013 msmsg("%s\n", str);
4014#else
4015 puts(str);
4016 (void) fflush(stdout);
4017#endif
4018}
4019
4020void
4021tty_raw_print_bold(const char *str)

Callers 7

term_startupFunction · 0.85
tty_suspend_nhwindowsFunction · 0.85
tty_putstrFunction · 0.85
tty_display_fileFunction · 0.85
tty_putmixedFunction · 0.85
gnome_raw_printFunction · 0.85
setttyFunction · 0.85

Calls 3

msmsgFunction · 0.85
putsFunction · 0.85
fflushFunction · 0.85

Tested by

no test coverage detected