3eeb401259
Repo copy by: markm
17 lines
204 B
C
17 lines
204 B
C
/* $FreeBSD$ */
|
|
#include <stdio.h>
|
|
#include <termcap.h>
|
|
|
|
int
|
|
main(int argc, char **argv)
|
|
{
|
|
char buf[4096];
|
|
int i;
|
|
|
|
if (argc < 2)
|
|
return 1;
|
|
i = tgetent(buf, argv[1]);
|
|
printf("%s",buf);
|
|
return 0;
|
|
}
|