ack/lang/cem/libcc/stdio/flushbuf.c

72 lines
1.2 KiB
C
Raw Normal View History

1987-01-27 15:57:55 +00:00
#include <stdio.h>
int
_flushbuf(c, iop)
register FILE *iop;
{
if (fileno(iop) < 0) return EOF;
if (! io_testflag(iop, IO_UNBUFF)) {
if (iop->_buf == 0) {
if (iop == stdout) {
if (isatty(fileno(stdout))) {
iop->_flags |= IO_UNBUFF;
}
else {
1987-02-05 20:56:06 +00:00
extern unsigned char _sobuf[];
1987-01-27 15:57:55 +00:00
1987-02-06 10:37:09 +00:00
iop->_buf = _sobuf;
iop->_count = BUFSIZ-1;
1987-01-27 15:57:55 +00:00
}
}
else {
extern char *malloc();
if (!(iop->_buf = (unsigned char *) malloc(BUFSIZ))) {
iop->_flags |= IO_UNBUFF;
}
else {
iop->_flags |= IO_MYBUF;
1987-02-06 10:37:09 +00:00
iop->_count = BUFSIZ-1;
1987-01-27 15:57:55 +00:00
}
}
1987-02-06 10:37:09 +00:00
iop->_ptr = iop->_buf;
1987-01-27 15:57:55 +00:00
}
}
if (io_testflag(iop, IO_UNBUFF)) {
char c1 = c;
iop->_count = 0;
if (write(fileno(iop), &c1, 1) != 1) {
iop->_flags |= IO_ERR;
return EOF;
}
return c;
}
else {
1987-02-06 10:37:09 +00:00
int count = iop->_ptr - iop->_buf;
1987-01-27 15:57:55 +00:00
iop->_count = BUFSIZ - 1;
iop->_ptr = iop->_buf + 1;
if (count > 0) {
if (write(fileno(iop), iop->_buf, count) != count) {
*(iop->_buf) = c;
iop->_flags |= IO_ERR;
return EOF;
}
}
*(iop->_buf) = c;
}
return c;
}
_cleanup()
{
register int i;
for ( i = 0 ; i < _NFILES ; i++ )
if ( _io_table[i] != NULL )
fclose(_io_table[i]);
}