]> mj.ucw.cz Git - libucw.git/blobdiff - lib/gbuf.h
Moved endianity settings etc. to the per-CPU section.
[libucw.git] / lib / gbuf.h
index 59cc36a6ceed7df8ed8296c1177dff9d1dd4b1dc..0775f20cb3738bb976176a72af94918322261f9d 100644 (file)
@@ -1,5 +1,5 @@
 /*
- *     A simple growing buffer
+ *     UCW Library -- A simple growing buffer
  *
  *     (c) 2004, Robert Spalek <robert@ucw.cz>
  *
@@ -7,6 +7,9 @@
  *
  *     GBUF_TYPE       data type of records stored in the buffer
  *     GBUF_PREFIX(x)  add a name prefix to all global symbols
+ *
+ *     This software may be freely distributed and used according to the terms
+ *     of the GNU Lesser General Public License.
  */
 
 #include <stdlib.h>
@@ -46,7 +49,7 @@ GBUF_PREFIX(realloc)(BUF_T *b, uns len)
 static inline void
 GBUF_PREFIX(grow)(BUF_T *b, uns len)
 {
-  if (len <= b->len)
+  if (likely(len <= b->len))
     return;
   if (len < 2*b->len)                  // to ensure logarithmic cost
     len = 2*b->len;
@@ -55,3 +58,4 @@ GBUF_PREFIX(grow)(BUF_T *b, uns len)
 
 #undef GBUF_TYPE
 #undef GBUF_PREFIX
+#undef BUF_T