-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathamitermcap.h
45 lines (40 loc) · 959 Bytes
/
amitermcap.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
/*++
/* NAME
/* amitermcap.h 5
/* SUMMARY
/* internal type declarations for termcap functions, ported to the
/* Amiga
/* PROJECT
/* ms-dos/unix compatibility
/* PACKAGE
/* termcap
/* SYNOPSIS
/* #include "amitermcap.h"
/* DESCRIPTION
/* amitermcap.h contains declarations for internal use of the Amiga
/* implementation of the termcap(3) functions
/* .nf
/* /* function types */
extern tgetent();
extern tgetnum();
extern tgetflag();
extern char *tgetstr();
extern char *tgoto();
extern tputs();
/* /* static storage for pc console capabilities */
typedef struct {
char *name;
char *cap;
} Cap;
extern Cap _console[];
/* SEE ALSO
/* termcap(3), Berkeley extensions to UNIX.
/* AUTHOR(S)
/* W.Z. Venema
/* Eindhoven University of Technology
/* Department of Mathematics and Computer Science
/* Den Dolech 2, P.O. Box 513, 5600 MB Eindhoven, The Netherlands
/*
/* Ported to the Amiga by Brent J. Nordquist
/* ([email protected])
/*--*/