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
| 928 | by calling more() or displaying both on the same line. |
| 929 | */ |
| 930 | void |
| 931 | mswin_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 | |
| 938 | void |
| 939 | mswin_putstr_ex(winid wid, int attr, const char *text, boolean app) |
no test coverage detected