(str)
| 934 | extern void mar_raw_print_bold(const char *); |
| 935 | |
| 936 | void |
| 937 | Gem_raw_print(str) |
| 938 | const char *str; |
| 939 | { |
| 940 | if (str && *str) { |
| 941 | if (iflags.window_inited) |
| 942 | mar_raw_print(str); |
| 943 | else |
| 944 | printf("%s\n", str); |
| 945 | } |
| 946 | } |
| 947 | |
| 948 | void |
| 949 | Gem_raw_print_bold(str) |
no test coverage detected