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

Function mswin_putstr

outdated/sys/wince/mswproc.c:930–936  ·  view source on GitHub ↗

putstr(window, attr, str) -- Print str on the window with the given attribute. Only printable ASCII characters (040-0126) must be supported. Multiple putstr()s are output on separate lines. Attributes can be one of ATR_NONE (or 0) ATR_ULINE ATR_BOLD

Source from the content-addressed store, hash-verified

928 by calling more() or displaying both on the same line.
929*/
930void
931mswin_putstr(winid wid, int attr, const char *text)
932{
933 logDebug("mswin_putstr(%d, %d, %s)\n", wid, attr, text);
934
935 mswin_putstr_ex(wid, attr, text, 0);
936}
937
938void
939mswin_putstr_ex(winid wid, int attr, const char *text, boolean app)

Callers 3

mswin_direct_commandFunction · 0.70
mswin_display_fileFunction · 0.70
mswin_yn_functionFunction · 0.70

Calls 2

logDebugFunction · 0.70
mswin_putstr_exFunction · 0.70

Tested by

no test coverage detected