| 148 | } |
| 149 | |
| 150 | int wattrset(WINDOW *win, chtype attrs) |
| 151 | { |
| 152 | PDC_LOG(("wattrset() - called\n")); |
| 153 | |
| 154 | if (!win) |
| 155 | return ERR; |
| 156 | |
| 157 | win->_attrs = attrs & A_ATTRIBUTES; |
| 158 | |
| 159 | return OK; |
| 160 | } |
| 161 | |
| 162 | int attrset(chtype attrs) |
| 163 | { |
no outgoing calls