summaryrefslogtreecommitdiffstats
path: root/contrib/ncurses/test/keynames.c
blob: c2056ec4e7bb57817311fe3464df534c9f12f45e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/*
 * $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);
}
OpenPOWER on IntegriCloud