2
0
mirror of https://github.com/xcat2/xNBA.git synced 2024-12-14 07:11:32 +00:00

- added doxygen @file header

This commit is contained in:
Dan Lynch 2006-06-21 10:31:59 +00:00
parent 172a568af5
commit d77120541a

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
*