]> ncurses.scripts.mit.edu Git - ncurses.git/blob - doc/html/man/curs_getch.3x.html
ncurses 6.2 - patch 20210626
[ncurses.git] / doc / html / man / curs_getch.3x.html
1 <!--
2   * t
3   ****************************************************************************
4   * Copyright 2018-2019,2020 Thomas E. Dickey                                *
5   * Copyright 1998-2016,2017 Free Software Foundation, Inc.                  *
6   *                                                                          *
7   * Permission is hereby granted, free of charge, to any person obtaining a  *
8   * copy of this software and associated documentation files (the            *
9   * "Software"), to deal in the Software without restriction, including      *
10   * without limitation the rights to use, copy, modify, merge, publish,      *
11   * distribute, distribute with modifications, sublicense, and/or sell       *
12   * copies of the Software, and to permit persons to whom the Software is    *
13   * furnished to do so, subject to the following conditions:                 *
14   *                                                                          *
15   * The above copyright notice and this permission notice shall be included  *
16   * in all copies or substantial portions of the Software.                   *
17   *                                                                          *
18   * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS  *
19   * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF               *
20   * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.   *
21   * IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,   *
22   * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR    *
23   * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR    *
24   * THE USE OR OTHER DEALINGS IN THE SOFTWARE.                               *
25   *                                                                          *
26   * Except as contained in this notice, the name(s) of the above copyright   *
27   * holders shall not be used in advertising or otherwise to promote the     *
28   * sale, use or other dealings in this Software without prior written       *
29   * authorization.                                                           *
30   ****************************************************************************
31   * @Id: curs_getch.3x,v 1.57 2020/12/19 21:38:20 tom Exp @
32 -->
33 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN">
34 <HTML>
35 <HEAD>
36 <meta http-equiv="Content-Type" content="text/html; charset=us-ascii">
37 <meta name="generator" content="Manpage converted by man2html - see https://invisible-island.net/scripts/readme.html#others_scripts">
38 <TITLE>curs_getch 3x</TITLE>
39 <link rel="author" href="mailto:bug-ncurses@gnu.org">
40 <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
41 </HEAD>
42 <BODY>
43 <H1 class="no-header">curs_getch 3x</H1>
44 <PRE>
45 <STRONG><A HREF="curs_getch.3x.html">curs_getch(3x)</A></STRONG>                                                  <STRONG><A HREF="curs_getch.3x.html">curs_getch(3x)</A></STRONG>
46
47
48
49
50 </PRE><H2><a name="h2-NAME">NAME</a></H2><PRE>
51        <STRONG>getch</STRONG>, <STRONG>wgetch</STRONG>, <STRONG>mvgetch</STRONG>, <STRONG>mvwgetch</STRONG>, <STRONG>ungetch</STRONG>, <STRONG>has_key</STRONG> - get (or push back)
52        characters from <STRONG>curses</STRONG> terminal keyboard
53
54
55 </PRE><H2><a name="h2-SYNOPSIS">SYNOPSIS</a></H2><PRE>
56        <STRONG>#include</STRONG> <STRONG>&lt;curses.h&gt;</STRONG>
57
58        <STRONG>int</STRONG> <STRONG>getch(void);</STRONG>
59        <STRONG>int</STRONG> <STRONG>wgetch(WINDOW</STRONG> <STRONG>*</STRONG><EM>win);</EM>
60
61        <STRONG>int</STRONG> <STRONG>mvgetch(int</STRONG> <EM>y</EM><STRONG>,</STRONG> <STRONG>int</STRONG> <EM>x</EM><STRONG>);</STRONG>
62        <STRONG>int</STRONG> <STRONG>mvwgetch(WINDOW</STRONG> <STRONG>*</STRONG><EM>win</EM><STRONG>,</STRONG> <STRONG>int</STRONG> <EM>y</EM><STRONG>,</STRONG> <STRONG>int</STRONG> <EM>x</EM><STRONG>);</STRONG>
63
64        <STRONG>int</STRONG> <STRONG>ungetch(int</STRONG> <EM>ch</EM><STRONG>);</STRONG>
65
66        /* extension */
67        <STRONG>int</STRONG> <STRONG>has_key(int</STRONG> <EM>ch</EM><STRONG>);</STRONG>
68
69
70 </PRE><H2><a name="h2-DESCRIPTION">DESCRIPTION</a></H2><PRE>
71
72 </PRE><H3><a name="h3-Reading-characters">Reading characters</a></H3><PRE>
73        The <STRONG>getch</STRONG>, <STRONG>wgetch</STRONG>, <STRONG>mvgetch</STRONG> and <STRONG>mvwgetch</STRONG>, routines read a character from
74        the window.  In no-delay mode, if no input is waiting, the value <STRONG>ERR</STRONG> is
75        returned.  In delay mode, the program waits  until  the  system  passes
76        text  through to the program.  Depending on the setting of <STRONG>cbreak</STRONG>, this
77        is after one character  (cbreak  mode),  or  after  the  first  newline
78        (nocbreak mode).  In half-delay mode, the program waits until a charac-
79        ter is typed or the specified timeout has been reached.
80
81        If <STRONG>echo</STRONG> is enabled, and the window is not a  pad,  then  the  character
82        will also be echoed into the designated window according to the follow-
83        ing rules:
84
85        <STRONG>o</STRONG>   If the character is the current erase  character,  left  arrow,  or
86            backspace,  the  cursor  is  moved  one  space to the left and that
87            screen position is erased as if <STRONG>delch</STRONG> had been called.
88
89        <STRONG>o</STRONG>   If the character value is any other <STRONG>KEY_</STRONG> define, the user is alert-
90            ed with a <STRONG>beep</STRONG> call.
91
92        <STRONG>o</STRONG>   If  the character is a carriage-return, and if <STRONG>nl</STRONG> is enabled, it is
93            translated to a line-feed after echoing.
94
95        <STRONG>o</STRONG>   Otherwise the character is simply output to the screen.
96
97        If the window is not a pad, and it has been moved or modified since the
98        last call to <STRONG>wrefresh</STRONG>, <STRONG>wrefresh</STRONG> will be called before another character
99        is read.
100
101
102 </PRE><H3><a name="h3-Keypad-mode">Keypad mode</a></H3><PRE>
103        If <STRONG>keypad</STRONG> is <STRONG>TRUE</STRONG>, and a function key is pressed, the  token  for  that
104        function key is returned instead of the raw characters:
105
106        <STRONG>o</STRONG>   The  predefined  function  keys  are listed in <STRONG>&lt;curses.h&gt;</STRONG> as macros
107            with values outside the range of 8-bit characters.  Their names be-
108            gin with <STRONG>KEY_</STRONG>.
109
110        <STRONG>o</STRONG>   Other  (user-defined)  function keys which may be defined using <STRONG>de-</STRONG>
111            <STRONG><A HREF="define_key.3x.html">fine_key(3x)</A></STRONG> have no names, but also are expected  to  have  values
112            outside the range of 8-bit characters.
113
114        Thus,  a  variable  intended to hold the return value of a function key
115        must be of short size or larger.
116
117        When a character that could be the beginning of a function key  is  re-
118        ceived  (which, on modern terminals, means an escape character), <STRONG>curses</STRONG>
119        sets a timer.  If the remainder of the sequence does not come in within
120        the  designated  time,  the character is passed through; otherwise, the
121        function key value is returned.  For this reason, many terminals  expe-
122        rience  a  delay between the time a user presses the escape key and the
123        escape is returned to the program.
124
125        In <STRONG>ncurses</STRONG>, the timer normally expires after the value in <STRONG>ESCDELAY</STRONG> (see
126        <STRONG><A HREF="curs_variables.3x.html">curs_variables(3x)</A></STRONG>).   If <STRONG>notimeout</STRONG> is <STRONG>TRUE</STRONG>, the timer does not expire;
127        it is an infinite (or very large) value.  Because function keys usually
128        begin  with an escape character, the terminal may appear to hang in no-
129        timeout mode after  pressing  the  escape  key  until  another  key  is
130        pressed.
131
132
133 </PRE><H3><a name="h3-Ungetting-characters">Ungetting characters</a></H3><PRE>
134        The  <STRONG>ungetch</STRONG> routine places <EM>ch</EM> back onto the input queue to be returned
135        by the next call to <STRONG>wgetch</STRONG>.  There is just one input queue for all win-
136        dows.
137
138
139 </PRE><H3><a name="h3-Predefined-key-codes">Predefined key-codes</a></H3><PRE>
140        The following special keys are defined in <STRONG>&lt;curses.h&gt;</STRONG>.
141
142        <STRONG>o</STRONG>   Except  for  the special case <STRONG>KEY_RESIZE</STRONG>, it is necessary to enable
143            <STRONG>keypad</STRONG> for <STRONG>getch</STRONG> to return these codes.
144
145        <STRONG>o</STRONG>   Not all of these are necessarily supported on any particular termi-
146            nal.
147
148        <STRONG>o</STRONG>   The  naming  convention  may  seem obscure, with some apparent mis-
149            spellings (such as "RSUME" for "resume").  The names correspond  to
150            the  long  terminfo capability names for the keys, and were defined
151            long ago, in the 1980s.
152
153                   <EM>Name</EM>            <EM>Key</EM> <EM>name</EM>
154                   -------------------------------------------------
155                   KEY_BREAK       Break key
156                   KEY_DOWN        The four arrow keys ...
157                   KEY_UP
158                   KEY_LEFT
159                   KEY_RIGHT
160                   KEY_HOME        Home key (upward+left arrow)
161                   KEY_BACKSPACE   Backspace
162                   KEY_F0          Function keys; space for 64 keys
163                                   is reserved.
164                   KEY_F(<EM>n</EM>)        For 0 &lt;= <EM>n</EM> &lt;= 63
165                   KEY_DL          Delete line
166                   KEY_IL          Insert line
167                   KEY_DC          Delete character
168                   KEY_IC          Insert char or enter insert mode
169                   KEY_EIC         Exit insert char mode
170                   KEY_CLEAR       Clear screen
171                   KEY_EOS         Clear to end of screen
172                   KEY_EOL         Clear to end of line
173                   KEY_SF          Scroll 1 line forward
174                   KEY_SR          Scroll 1 line backward (reverse)
175                   KEY_NPAGE       Next page
176                   KEY_PPAGE       Previous page
177                   KEY_STAB        Set tab
178                   KEY_CTAB        Clear tab
179                   KEY_CATAB       Clear all tabs
180                   KEY_ENTER       Enter or send
181                   KEY_SRESET      Soft (partial) reset
182                   KEY_RESET       Reset or hard reset
183
184                   KEY_PRINT       Print or copy
185                   KEY_LL          Home down or bottom (lower left)
186                   KEY_A1          Upper left of keypad
187                   KEY_A3          Upper right of keypad
188                   KEY_B2          Center of keypad
189                   KEY_C1          Lower left of keypad
190                   KEY_C3          Lower right of keypad
191                   KEY_BTAB        Back tab key
192                   KEY_BEG         Beg(inning) key
193                   KEY_CANCEL      Cancel key
194                   KEY_CLOSE       Close key
195                   KEY_COMMAND     Cmd (command) key
196                   KEY_COPY        Copy key
197                   KEY_CREATE      Create key
198                   KEY_END         End key
199                   KEY_EXIT        Exit key
200                   KEY_FIND        Find key
201                   KEY_HELP        Help key
202                   KEY_MARK        Mark key
203                   KEY_MESSAGE     Message key
204                   KEY_MOUSE       Mouse event read
205                   KEY_MOVE        Move key
206                   KEY_NEXT        Next object key
207                   KEY_OPEN        Open key
208                   KEY_OPTIONS     Options key
209                   KEY_PREVIOUS    Previous object key
210                   KEY_REDO        Redo key
211                   KEY_REFERENCE   Ref(erence) key
212                   KEY_REFRESH     Refresh key
213                   KEY_REPLACE     Replace key
214                   KEY_RESIZE      Screen resized
215                   KEY_RESTART     Restart key
216                   KEY_RESUME      Resume key
217                   KEY_SAVE        Save key
218                   KEY_SBEG        Shifted beginning key
219                   KEY_SCANCEL     Shifted cancel key
220                   KEY_SCOMMAND    Shifted command key
221                   KEY_SCOPY       Shifted copy key
222                   KEY_SCREATE     Shifted create key
223                   KEY_SDC         Shifted delete char key
224                   KEY_SDL         Shifted delete line key
225                   KEY_SELECT      Select key
226                   KEY_SEND        Shifted end key
227                   KEY_SEOL        Shifted clear line key
228                   KEY_SEXIT       Shifted exit key
229                   KEY_SFIND       Shifted find key
230                   KEY_SHELP       Shifted help key
231                   KEY_SHOME       Shifted home key
232                   KEY_SIC         Shifted input key
233                   KEY_SLEFT       Shifted left arrow key
234                   KEY_SMESSAGE    Shifted message key
235                   KEY_SMOVE       Shifted move key
236                   KEY_SNEXT       Shifted next key
237                   KEY_SOPTIONS    Shifted options key
238                   KEY_SPREVIOUS   Shifted prev key
239                   KEY_SPRINT      Shifted print key
240                   KEY_SREDO       Shifted redo key
241                   KEY_SREPLACE    Shifted replace key
242                   KEY_SRIGHT      Shifted right arrow
243                   KEY_SRSUME      Shifted resume key
244                   KEY_SSAVE       Shifted save key
245                   KEY_SSUSPEND    Shifted suspend key
246                   KEY_SUNDO       Shifted undo key
247                   KEY_SUSPEND     Suspend key
248                   KEY_UNDO        Undo key
249
250        Keypad is arranged like this:
251
252                                 +-----+------+-------+
253                                 | <STRONG>A1</STRONG>  |  <STRONG>up</STRONG>  |  <STRONG>A3</STRONG>   |
254                                 +-----+------+-------+
255                                 |<STRONG>left</STRONG> |  <STRONG>B2</STRONG>  | <STRONG>right</STRONG> |
256                                 +-----+------+-------+
257                                 | <STRONG>C1</STRONG>  | <STRONG>down</STRONG> |  <STRONG>C3</STRONG>   |
258                                 +-----+------+-------+
259        A few of these predefined values do <EM>not</EM> correspond to a real key:
260
261        <STRONG>o</STRONG>   <STRONG>KEY_RESIZE</STRONG>  is  returned when the <STRONG>SIGWINCH</STRONG> signal has been detected
262            (see  <STRONG><A HREF="curs_initscr.3x.html">initscr(3x)</A></STRONG>  and  <STRONG><A HREF="resizeterm.3x.html">resizeterm(3x)</A></STRONG>).   This  code  is  returned
263            whether or not <STRONG>keypad</STRONG> has been enabled.
264
265        <STRONG>o</STRONG>   <STRONG>KEY_MOUSE</STRONG>  is returned for mouse-events (see <STRONG><A HREF="curs_mouse.3x.html">curs_mouse(3x)</A></STRONG>).  This
266            code relies upon whether or not <STRONG><A HREF="curs_inopts.3x.html">keypad(3x)</A></STRONG> has  been  enabled,  be-
267            cause  (e.g., with <EM>xterm</EM> mouse prototocol) ncurses must read escape
268            sequences, just like a function key.
269
270
271 </PRE><H3><a name="h3-Testing-key-codes">Testing key-codes</a></H3><PRE>
272        The <STRONG>has_key</STRONG> routine takes a key-code value from the above list, and re-
273        turns <STRONG>TRUE</STRONG> or <STRONG>FALSE</STRONG> according to whether the current terminal type rec-
274        ognizes a key with that value.
275
276        The library also supports these extensions:
277
278           <STRONG>define_key</STRONG>
279                defines a key-code for a given string (see <STRONG><A HREF="define_key.3x.html">define_key(3x)</A></STRONG>).
280
281           <STRONG>key_defined</STRONG>
282                checks if there is a key-code defined for a given  string  (see
283                <STRONG><A HREF="key_defined.3x.html">key_defined(3x)</A></STRONG>).
284
285
286 </PRE><H2><a name="h2-RETURN-VALUE">RETURN VALUE</a></H2><PRE>
287        All  routines  return the integer <STRONG>ERR</STRONG> upon failure and an integer value
288        other than <STRONG>ERR</STRONG> (<STRONG>OK</STRONG> in the case of <STRONG>ungetch</STRONG>) upon successful completion.
289
290           <STRONG>ungetch</STRONG>
291                returns <STRONG>ERR</STRONG> if there is no more room in the FIFO.
292
293           <STRONG>wgetch</STRONG>
294                returns <STRONG>ERR</STRONG> if the window pointer is null, or  if  its  timeout
295                expires without having any data, or if the execution was inter-
296                rupted by a signal (<STRONG>errno</STRONG> will be set to <STRONG>EINTR</STRONG>).
297
298        Functions with a "mv" prefix first  perform  a  cursor  movement  using
299        <STRONG>wmove</STRONG>, and return an error if the position is outside the window, or if
300        the window pointer is null.
301
302
303 </PRE><H2><a name="h2-NOTES">NOTES</a></H2><PRE>
304        Use of the escape key by a programmer for a single  character  function
305        is  discouraged, as it will cause a delay of up to one second while the
306        keypad code looks for a following function-key sequence.
307
308        Some keys may be the same as commonly used control keys, e.g.,  <STRONG>KEY_EN-</STRONG>
309        <STRONG>TER</STRONG>  versus control/M, <STRONG>KEY_BACKSPACE</STRONG> versus control/H.  Some curses im-
310        plementations may differ according to whether they treat these  control
311        keys  specially  (and ignore the terminfo), or use the terminfo defini-
312        tions.  <STRONG>Ncurses</STRONG> uses the terminfo definition.  If it says that  <STRONG>KEY_EN-</STRONG>
313        <STRONG>TER</STRONG> is control/M, <STRONG>getch</STRONG> will return <STRONG>KEY_ENTER</STRONG> when you press control/M.
314
315        Generally,  <STRONG>KEY_ENTER</STRONG> denotes the character(s) sent by the <EM>Enter</EM> key on
316        the numeric keypad:
317
318        <STRONG>o</STRONG>   the terminal description lists the most useful keys,
319
320        <STRONG>o</STRONG>   the <EM>Enter</EM> key on the regular keyboard is  already  handled  by  the
321            standard ASCII characters for carriage-return and line-feed,
322
323        <STRONG>o</STRONG>   depending on whether <STRONG>nl</STRONG> or <STRONG>nonl</STRONG> was called, pressing "Enter" on the
324            regular keyboard may return either a carriage-return or  line-feed,
325            and finally
326
327        <STRONG>o</STRONG>   "Enter or send" is the standard description for this key.
328
329        When   using   <STRONG>getch</STRONG>,  <STRONG>wgetch</STRONG>,  <STRONG>mvgetch</STRONG>,  or  <STRONG>mvwgetch</STRONG>,  nocbreak  mode
330        (<STRONG>nocbreak</STRONG>) and echo mode (<STRONG>echo</STRONG>) should not be used at  the  same  time.
331        Depending  on the state of the tty driver when each character is typed,
332        the program may produce undesirable results.
333
334        Note that <STRONG>getch</STRONG>, <STRONG>mvgetch</STRONG>, and <STRONG>mvwgetch</STRONG> may be macros.
335
336        Historically, the set of keypad macros was largely defined by  the  ex-
337        tremely  function-key-rich  keyboard of the AT&amp;T 7300, aka 3B1, aka Sa-
338        fari 4.  Modern personal computers usually have only a small subset  of
339        these.   IBM  PC-style  consoles  typically  support  little  more than
340        <STRONG>KEY_UP</STRONG>, <STRONG>KEY_DOWN</STRONG>, <STRONG>KEY_LEFT</STRONG>, <STRONG>KEY_RIGHT</STRONG>,  <STRONG>KEY_HOME</STRONG>,  <STRONG>KEY_END</STRONG>,  <STRONG>KEY_NPAGE</STRONG>,
341        <STRONG>KEY_PPAGE</STRONG>,  and  function  keys  1  through 12.  The Ins key is usually
342        mapped to <STRONG>KEY_IC</STRONG>.
343
344
345 </PRE><H2><a name="h2-PORTABILITY">PORTABILITY</a></H2><PRE>
346        The *get* functions are described in the XSI Curses standard, Issue  4.
347        They  read  single-byte  characters  only.  The standard specifies that
348        they return <STRONG>ERR</STRONG> on failure, but specifies no error conditions.
349
350        The echo behavior of these functions on  input  of  <STRONG>KEY_</STRONG>  or  backspace
351        characters  was not specified in the SVr4 documentation.  This descrip-
352        tion is adopted from the XSI Curses standard.
353
354        The behavior of <STRONG>getch</STRONG> and friends in the presence of handled signals is
355        unspecified in the SVr4 and XSI Curses documentation.  Under historical
356        curses implementations, it varied depending on  whether  the  operating
357        system's  implementation of handled signal receipt interrupts a <STRONG>read(2)</STRONG>
358        call in progress or not, and also (in some  implementations)  depending
359        on whether an input timeout or non-blocking mode has been set.
360
361        <STRONG>KEY_MOUSE</STRONG> is mentioned in XSI Curses, along with a few related terminfo
362        capabilities, but no higher-level functions use the feature.   The  im-
363        plementation in ncurses is an extension.
364
365        <STRONG>KEY_RESIZE</STRONG> is an extension first implemented for ncurses.  NetBSD curs-
366        es later added this extension.
367
368        Programmers concerned about portability should be prepared  for  either
369        of  two  cases: (a) signal receipt does not interrupt <STRONG>getch</STRONG>; (b) signal
370        receipt interrupts <STRONG>getch</STRONG> and causes it to return <STRONG>ERR</STRONG> with <STRONG>errno</STRONG> set  to
371        <STRONG>EINTR</STRONG>.
372
373        The  <STRONG>has_key</STRONG> function is unique to <STRONG>ncurses</STRONG>.  We recommend that any code
374        using it be conditionalized on the <STRONG>NCURSES_VERSION</STRONG> feature macro.
375
376
377 </PRE><H2><a name="h2-SEE-ALSO">SEE ALSO</a></H2><PRE>
378        <STRONG><A HREF="ncurses.3x.html">curses(3x)</A></STRONG>, <STRONG><A HREF="curs_inopts.3x.html">curs_inopts(3x)</A></STRONG>, <STRONG><A HREF="curs_mouse.3x.html">curs_mouse(3x)</A></STRONG>,  <STRONG><A HREF="curs_move.3x.html">curs_move(3x)</A></STRONG>,  <STRONG>curs_out-</STRONG>
379        <STRONG><A HREF="curs_outopts.3x.html">opts(3x)</A></STRONG>, <STRONG><A HREF="curs_refresh.3x.html">curs_refresh(3x)</A></STRONG>, <STRONG><A HREF="curs_variables.3x.html">curs_variables(3x)</A></STRONG>, <STRONG><A HREF="resizeterm.3x.html">resizeterm(3x)</A></STRONG>.
380
381        Comparable  functions  in the wide-character (ncursesw) library are de-
382        scribed in <STRONG><A HREF="curs_get_wch.3x.html">curs_get_wch(3x)</A></STRONG>.
383
384
385
386                                                                 <STRONG><A HREF="curs_getch.3x.html">curs_getch(3x)</A></STRONG>
387 </PRE>
388 <div class="nav">
389 <ul>
390 <li><a href="#h2-NAME">NAME</a></li>
391 <li><a href="#h2-SYNOPSIS">SYNOPSIS</a></li>
392 <li><a href="#h2-DESCRIPTION">DESCRIPTION</a>
393 <ul>
394 <li><a href="#h3-Reading-characters">Reading characters</a></li>
395 <li><a href="#h3-Keypad-mode">Keypad mode</a></li>
396 <li><a href="#h3-Ungetting-characters">Ungetting characters</a></li>
397 <li><a href="#h3-Predefined-key-codes">Predefined key-codes</a></li>
398 <li><a href="#h3-Testing-key-codes">Testing key-codes</a></li>
399 </ul>
400 </li>
401 <li><a href="#h2-RETURN-VALUE">RETURN VALUE</a></li>
402 <li><a href="#h2-NOTES">NOTES</a></li>
403 <li><a href="#h2-PORTABILITY">PORTABILITY</a></li>
404 <li><a href="#h2-SEE-ALSO">SEE ALSO</a></li>
405 </ul>
406 </div>
407 </BODY>
408 </HTML>