Browse Source

__nonnull changes

tags/v0.9.3
Holger Lubitz 17 years ago
parent
commit
c5414e6d12
1 changed files with 8 additions and 0 deletions
  1. 8
    0
      src/hci/mucurses/mucurses.c

+ 8
- 0
src/hci/mucurses/mucurses.c View File

@@ -8,6 +8,14 @@
8 8
  *
9 9
  */
10 10
 
11
+static void _wupdcurs ( WINDOW *win ) __nonnull;
12
+void _wputch ( WINDOW *win, chtype ch, int wrap ) __nonnull;
13
+void _wputc ( WINDOW *win, char c, int wrap ) __nonnull;
14
+void _wcursback ( WINDOW *win ) __nonnull;
15
+void _wputchstr ( WINDOW *win, const chtype *chstr, int wrap, int n ) __nonnull;
16
+void _wputstr ( WINDOW *win, const char *str, int wrap, int n ) __nonnull;
17
+int wmove ( WINDOW *win, int y, int x ) __nonnull;
18
+
11 19
 WINDOW _stdscr = {
12 20
 	.attrs = A_DEFAULT,
13 21
 	.ori_y = 0,

Loading…
Cancel
Save