1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-12-04 14:46:47 -05:00

doc: Document parse_keystroke().

This commit is contained in:
Kalle Olavi Niemitalo 2006-08-13 15:41:34 +03:00 committed by Kalle Olavi Niemitalo
parent de93359a5a
commit c79ecefe73

View File

@ -369,6 +369,9 @@ read_key(const unsigned char *key_str)
return KBD_UNDEF;
}
/* Parse the string @s as the name of a keystroke.
* Write the parsed key and modifiers to *@kbd.
* Return >=0 on success, <0 on error. */
int
parse_keystroke(const unsigned char *s, struct term_event_keyboard *kbd)
{