54b8aa2d687a47c93f76936cf7e58b809e9ecf9b
[rodin/chimara.git] / src / style.c
1 #include "glk.h"
2
3 /**
4  * glk_set_style:
5  * @val: A style.
6  *
7  * Changes the style of the current output stream. @val should be one of 
8  * #style_Normal, #style_Emphasized, #style_Preformatted, #style_Header,
9  * #style_Subheader, #style_Alert, #style_Note, #style_BlockQuote, #style_Input,
10  * #style_User1, or #style_User2. However, any value is actually legal; if the
11  * library does not recognize the style value, it will treat it as
12  * #style_Normal. (This policy allows for the future definition of styles
13  * without breaking old Glk libraries.) 
14  */
15 void
16 glk_set_style(glui32 val)
17 {
18         /* No nothing yet */
19         return;
20 }