0e3d540892
This contains the full eti (panel, form, menu) extensions. bmake glue to follow. Obtained from: ftp://ftp.clark.net/pub/dickey/ncurses
15 lines
253 B
C
15 lines
253 B
C
/*
|
|
* $Id: keynames.c,v 1.2 1998/06/06 22:45:13 tom Exp $
|
|
*/
|
|
|
|
#include <test.priv.h>
|
|
|
|
int main(int argc GCC_UNUSED, char *argv[] GCC_UNUSED)
|
|
{
|
|
int n;
|
|
for (n = -1; n < 512; n++) {
|
|
printf("%d(%5o):%s\n", n, n, keyname(n));
|
|
}
|
|
return EXIT_SUCCESS;
|
|
}
|