ack/lang/pc/libpc/incpt.c

81 lines
1.4 KiB
C
Raw Permalink Normal View History

1994-06-24 14:02:31 +00:00
/* $Id$ */
1984-07-20 10:44:57 +00:00
/*
* (c) copyright 1983 by the Vrije Universiteit, Amsterdam, The Netherlands.
*
* This product is part of the Amsterdam Compiler Kit.
*
* Permission to use, sell, duplicate or disclose this software must be
* obtained in writing. Requests for such permissions may be sent to
*
* Dr. Andrew S. Tanenbaum
* Wiskundig Seminarium
* Vrije Universiteit
* Postbox 7161
* 1007 MC Amsterdam
* The Netherlands
*
*/
/* Author: J.W. Stevenson */
#include <stdlib.h>
#include <errno.h>
#include <unistd.h>
2018-06-17 20:30:27 +00:00
#include "pc.h"
1984-07-20 10:44:57 +00:00
2018-06-17 20:30:27 +00:00
void _incpt(struct file* f)
2018-06-17 14:11:29 +00:00
{
1984-07-20 10:44:57 +00:00
if (f->flags & EOFBIT)
_trp(EEOF);
f->flags |= WINDOW;
f->flags &= ~ELNBIT;
#ifdef CPM
2018-06-17 14:11:29 +00:00
do
{
1984-07-20 10:44:57 +00:00
#endif
2018-06-17 14:11:29 +00:00
f->ptr += f->size;
if (f->count == 0)
{
f->ptr = f->bufadr;
for (;;)
{
f->count = read(f->ufd, f->bufadr, f->buflen);
if (f->count < 0)
{
if (errno != EINTR)
_trp(EREAD);
continue;
}
break;
}
if (f->count == 0)
{
f->flags |= EOFBIT;
*f->ptr = '\0';
return;
1984-07-20 10:44:57 +00:00
}
}
2018-06-17 14:11:29 +00:00
if ((f->count -= f->size) < 0)
_trp(EFTRUNC);
1984-07-20 10:44:57 +00:00
#ifdef CPM
2018-06-17 14:11:29 +00:00
} while ((f->flags & TXTBIT) && *f->ptr == '\r');
1984-07-20 10:44:57 +00:00
#endif
2018-06-17 14:11:29 +00:00
if (f->flags & TXTBIT)
{
1984-07-20 10:44:57 +00:00
if (*f->ptr & 0200)
_trp(EASCII);
2018-06-17 14:11:29 +00:00
if (*f->ptr == '\n')
{
1984-07-20 10:44:57 +00:00
f->flags |= ELNBIT;
*f->ptr = ' ';
}
#ifdef CPM
2018-06-17 14:11:29 +00:00
if (*f->ptr == 26)
{
1984-07-20 10:44:57 +00:00
f->flags |= EOFBIT;
*f->ptr = 0;
}
#endif
}
}