- added doxygen @file header

pull/1/head
Dan Lynch 2006-06-21 10:31:59 +00:00
parent 172a568af5
commit d77120541a
1 changed files with 16 additions and 0 deletions

View File

@ -1,5 +1,21 @@
#include <curses.h>
/** @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
*