From d77120541af8f87544a3e421cdc1e2178cd58842 Mon Sep 17 00:00:00 2001 From: Dan Lynch Date: Wed, 21 Jun 2006 10:31:59 +0000 Subject: [PATCH] - added doxygen @file header --- src/hci/mucurses/winattrs.c | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) 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 *