1deleteln(3XCURSES)      X/Open Curses Library Functions     deleteln(3XCURSES)
2
3
4

NAME

6       deleteln, wdeleteln - remove a line
7

SYNOPSIS

9       cc [ flag... ] file... -I /usr/xpg4/include  -L  /usr/xpg4/lib \
10        -R  /usr/xpg4/lib  -lcurses  [ library... ]
11
12       c89 [ flag... ] file... -lcurses [ library... ]
13
14       #include <curses.h>
15
16       int deleteln(void);
17
18
19       int wdeleteln(WINDOW *win);
20
21

DESCRIPTION

23       The  deleteln()  and  wdeleteln() functions delete the line  containing
24       the cursor from stdscr and win, respectively.  All lines below the  one
25       deleted  are  moved  up  one line.  The last line of the window becomes
26       blank.  The position of the cursor is unchanged.
27

PARAMETERS

29       win    Is a pointer to the window from which the line is removed.
30
31

RETURN VALUES

33       On success, these functions return OK. Otherwise, they return ERR.
34

ERRORS

36       None.
37

ATTRIBUTES

39       See attributes(5) for descriptions of the following attributes:
40
41
42
43
44       ┌─────────────────────────────┬─────────────────────────────┐
45       │      ATTRIBUTE TYPE         │      ATTRIBUTE VALUE        │
46       ├─────────────────────────────┼─────────────────────────────┤
47       │Interface Stability          │Standard                     │
48       ├─────────────────────────────┼─────────────────────────────┤
49       │MT-Level                     │Unsafe                       │
50       └─────────────────────────────┴─────────────────────────────┘
51

SEE ALSO

53       bkgdset(3XCURSES),       insdelln(3XCURSES),        insertln(3XCURSES),
54       libcurses(3XCURSES), attributes(5), standards(5)
55
56
57
58SunOS 5.11                        5 Jun 2002                deleteln(3XCURSES)
Impressum