diff options
Diffstat (limited to '')
-rw-r--r-- | scripts/kconfig/libcurses/border.c | 66 |
1 files changed, 35 insertions, 31 deletions
diff --git a/scripts/kconfig/libcurses/border.c b/scripts/kconfig/libcurses/border.c index 302c46ea2..409f2351a 100644 --- a/scripts/kconfig/libcurses/border.c +++ b/scripts/kconfig/libcurses/border.c | |||
@@ -46,14 +46,16 @@ border | |||
46 | border(), wborder(), and box() draw a border around the edge of the | 46 | border(), wborder(), and box() draw a border around the edge of the |
47 | window. If any argument is zero, an appropriate default is used: | 47 | window. If any argument is zero, an appropriate default is used: |
48 | 48 | ||
49 | ls left side of border ACS_VLINE | 49 | Name | Element | Default |
50 | rs right side of border ACS_VLINE | 50 | :----|:------------------------------|:------------ |
51 | ts top side of border ACS_HLINE | 51 | ls | left side of border | ACS_VLINE |
52 | bs bottom side of border ACS_HLINE | 52 | rs | right side of border | ACS_VLINE |
53 | tl top left corner of border ACS_ULCORNER | 53 | ts | top side of border | ACS_HLINE |
54 | tr top right corner of border ACS_URCORNER | 54 | bs | bottom side of border | ACS_HLINE |
55 | bl bottom left corner of border ACS_LLCORNER | 55 | tl | top left corner of border | ACS_ULCORNER |
56 | br bottom right corner of border ACS_LRCORNER | 56 | tr | top right corner of border | ACS_URCORNER |
57 | bl | bottom left corner of border | ACS_LLCORNER | ||
58 | br | bottom right corner of border | ACS_LRCORNER | ||
57 | 59 | ||
58 | hline() and whline() draw a horizontal line, using ch, starting from | 60 | hline() and whline() draw a horizontal line, using ch, starting from |
59 | the current cursor position. The cursor position does not change. The | 61 | the current cursor position. The cursor position does not change. The |
@@ -74,29 +76,31 @@ border | |||
74 | These functions return OK on success and ERR on error. | 76 | These functions return OK on success and ERR on error. |
75 | 77 | ||
76 | ### Portability | 78 | ### Portability |
77 | X/Open ncurses NetBSD | 79 | |
78 | border Y Y Y | 80 | Function | X/Open | ncurses | NetBSD |
79 | wborder Y Y Y | 81 | :---------------------|:------:|:-------:|:------: |
80 | box Y Y Y | 82 | border | Y | Y | Y |
81 | hline Y Y Y | 83 | wborder | Y | Y | Y |
82 | vline Y Y Y | 84 | box | Y | Y | Y |
83 | whline Y Y Y | 85 | hline | Y | Y | Y |
84 | wvline Y Y Y | 86 | vline | Y | Y | Y |
85 | mvhline Y Y Y | 87 | whline | Y | Y | Y |
86 | mvvline Y Y Y | 88 | wvline | Y | Y | Y |
87 | mvwhline Y Y Y | 89 | mvhline | Y | Y | Y |
88 | mvwvline Y Y Y | 90 | mvvline | Y | Y | Y |
89 | border_set Y Y Y | 91 | mvwhline | Y | Y | Y |
90 | wborder_set Y Y Y | 92 | mvwvline | Y | Y | Y |
91 | box_set Y Y Y | 93 | border_set | Y | Y | Y |
92 | hline_set Y Y Y | 94 | wborder_set | Y | Y | Y |
93 | vline_set Y Y Y | 95 | box_set | Y | Y | Y |
94 | whline_set Y Y Y | 96 | hline_set | Y | Y | Y |
95 | wvline_set Y Y Y | 97 | vline_set | Y | Y | Y |
96 | mvhline_set Y Y Y | 98 | whline_set | Y | Y | Y |
97 | mvvline_set Y Y Y | 99 | wvline_set | Y | Y | Y |
98 | mvwhline_set Y Y Y | 100 | mvhline_set | Y | Y | Y |
99 | mvwvline_set Y Y Y | 101 | mvvline_set | Y | Y | Y |
102 | mvwhline_set | Y | Y | Y | ||
103 | mvwvline_set | Y | Y | Y | ||
100 | 104 | ||
101 | **man-end****************************************************************/ | 105 | **man-end****************************************************************/ |
102 | 106 | ||