flsbuf.c
856 Bytes
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
/*
* iflsbuf -
*
* Paul Haeberli - 1984
*
*/
#include "image.h"
unsigned int iflsbuf(IMAGE *image, unsigned int c)
{
register unsigned short *base;
register int n, rn;
int size;
if ((image->flags&_IOWRT)==0)
return(EOF);
if ((base=image->base)==NULL) {
size = IBUFSIZE(image->xsize);
if ((image->base=base=ibufalloc(image)) == NULL) {
i_errhdlr("flsbuf: error on buf alloc\n");
return EOF;
}
rn = n = 0;
} else if ((rn = n = image->ptr - base) > 0) {
n = putrow(image,base,image->y,image->z);
if(++image->y >= image->ysize) {
image->y = 0;
if(++image->z >= image->zsize) {
image->z = image->zsize-1;
image->flags |= _IOEOF;
return -1;
}
}
}
image->cnt = image->xsize-1;
*base++ = c;
image->ptr = base;
if (rn != n) {
image->flags |= _IOERR;
return(EOF);
}
return(c);
}