diff --git a/src/hci/mucurses/winattrs.c b/src/hci/mucurses/winattrs.c index f31fdac5..53f228d2 100644 --- a/src/hci/mucurses/winattrs.c +++ b/src/hci/mucurses/winattrs.c @@ -1,5 +1,21 @@ #include +/** @file + * + * MuCurses window attribute functions + * + */ + +/** + * Get the background rendition attributes for a window + * + * @v *win subject window + * @ret ch chtype rendition representation + */ +inline chtype getbkgd ( WINDOW *win ) { + return win->attrs; +} + /** * Turn off attributes in a window *