]> mj.ucw.cz Git - libucw.git/commitdiff
bgetw() returns int instead of word, so it's possible
authorMartin Mares <mj@ucw.cz>
Sat, 15 Dec 2001 22:51:05 +0000 (22:51 +0000)
committerMartin Mares <mj@ucw.cz>
Sat, 15 Dec 2001 22:51:05 +0000 (22:51 +0000)
to detect EOF.

lib/fastbuf.c
lib/fastbuf.h

index 00fa51bcccd902538514cbbb069598008094b06f..8df905487ed42ff9bd371aaa222b8625a3fc21c7 100644 (file)
@@ -87,13 +87,19 @@ void bputc_slow(struct fastbuf *f, byte c)
   *f->bptr++ = c;
 }
 
-word bgetw_slow(struct fastbuf *f)
+int bgetw_slow(struct fastbuf *f)
 {
-  word w = bgetc_slow(f);
+  int w1, w2;
+  w1 = bgetc_slow(f);
+  if (w1 < 0)
+    return w1;
+  w2 = bgetc_slow(f);
+  if (w2 < 0)
+    return w2;
 #ifdef CPU_BIG_ENDIAN
-  return (w << 8) | bgetc_slow(f);
+  return (w1 << 8) | w2;
 #else
-  return w | (bgetc_slow(f) << 8);
+  return w1 | (w2 << 8);
 #endif
 }
 
index 1488f74045c59c0aac641f9194fb5c25c73f162f..a796a3c749b4ced91e835907359c7c9e2b343bbd 100644 (file)
@@ -103,10 +103,10 @@ static inline void bputc(struct fastbuf *f, byte c)
     bputc_slow(f, c);
 }
 
-word bgetw_slow(struct fastbuf *f);
-static inline word bgetw(struct fastbuf *f)
+int bgetw_slow(struct fastbuf *f);
+static inline int bgetw(struct fastbuf *f)
 {
-  word w;
+  int w;
   if (f->bptr + 2 <= f->bstop)
     {
       w = GET_U16(f->bptr);