Add copyright
[unix-history] / usr / src / lib / libterm / TEST / tc1.c
CommitLineData
6468808a
DF
1/*
2 * Copyright (c) 1980 Regents of the University of California.
3 * All rights reserved. The Berkeley software License Agreement
4 * specifies the terms and conditions for redistribution.
5 */
6
31cc5353 7#ifndef lint
6468808a
DF
8static char sccsid[] = "@(#)tc1.c 5.1 (Berkeley) %G%";
9#endif not lint
31cc5353
SL
10
11/*
12 * tc1 [term]
13 * dummy program to test termlib.
14 * gets entry, counts it, and prints it.
15 */
16#include <stdio.h>
17char buf[1024];
18char *getenv();
19
20main(argc, argv) char **argv; {
21 char *p;
22 int rc;
23
24 if (argc < 2)
25 p = getenv("TERM");
26 else
27 p = argv[1];
28 rc = tgetent(buf,p);
29 printf("tgetent returns %d, len=%d, text=\n'%s'\n",rc,strlen(buf),buf);
30}