date and time created 92/06/22 18:08:41 by bostic
authorKeith Bostic <bostic@ucbvax.Berkeley.EDU>
Tue, 23 Jun 1992 09:08:41 +0000 (01:08 -0800)
committerKeith Bostic <bostic@ucbvax.Berkeley.EDU>
Tue, 23 Jun 1992 09:08:41 +0000 (01:08 -0800)
SCCS-vsn: lib/libedit/termcap.h 5.1

usr/src/lib/libedit/termcap.h [new file with mode: 0644]

diff --git a/usr/src/lib/libedit/termcap.h b/usr/src/lib/libedit/termcap.h
new file mode 100644 (file)
index 0000000..244bfbd
--- /dev/null
@@ -0,0 +1,26 @@
+/*-
+ * Copyright (c) 1992 The Regents of the University of California.
+ * All rights reserved.
+ *
+ * This code is derived from software contributed to Berkeley by
+ * Christos Zoulas of Cornell University.
+ *
+ * %sccs.include.redist.c%
+ *
+ *     @(#)termcap.h   5.1 (Berkeley) %G%
+ */
+
+/*
+ * termcap.h: I cannot find those in any include files...
+ */
+#ifndef _h_termcap
+#define _h_termcap
+
+int   tgetent  __P((char *, char *));
+char *tgetstr  __P((char *, char **));
+int   tgetflag __P((char *));
+int   tgetnum  __P((char *));
+char *tgoto    __P((char *, int, int));
+char *tputs    __P((char *, int, void (*)(int)));
+
+#endif /* _h_termcap */