39f2269fcb
Obtained from: ftp://dickey.his.com/ncurses/
16 lines
269 B
C
16 lines
269 B
C
/*
|
|
* $Id: keynames.c,v 1.3 2001/09/15 21:46:34 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));
|
|
}
|
|
ExitProgram(EXIT_SUCCESS);
|
|
}
|