瀏覽代碼

__nonnull changes

tags/v0.9.3
Holger Lubitz 18 年之前
父節點
當前提交
c5414e6d12
共有 1 個檔案被更改,包括 8 行新增0 行删除
  1. 8
    0
      src/hci/mucurses/mucurses.c

+ 8
- 0
src/hci/mucurses/mucurses.c 查看文件

@@ -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…
取消
儲存