blob: ebb94d9a5545a07bc0d56f69b32779a7b35dfba9 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
# ISM I/O common.
int fdin # input descriptor
int fdout # output descriptor
int mode # file mode
int nbuf # no. chars in buffer
int bp # begin buffer ptr
int ep # end buffer ptr
char buffer[2*SZ_MESSAGE+1] # text buffer
common /ismfd/ fdin, fdout, mode, nbuf, buffer, bp, ep
|