/**
* Increment the internal bit counter.
*
- * \sa SKIP_CACHE, SKIP_BITS.
+ * \sa SKIP_CACHE.
*/
#define SKIP_COUNTER(name, gb, num)\
name##_index += (num);\
-/**
- * Skip over the next num bits.
- *
- * This is equivalent to SKIP_CACHE; SKIP_COUNTER.
- */
-#define SKIP_BITS(name, gb, num)\
- {\
- SKIP_CACHE(name, gb, num)\
- SKIP_COUNTER(name, gb, num)\
- }\
-
/** Return the next num bits. */
#define SHOW_UBITS(name, gb, num)\
NEG_USR32(name##_cache, num)
n = table[idx][1];
}
}
- SKIP_BITS(re, gb, n)
+ SKIP_CACHE(re, gb, n)
+ SKIP_COUNTER(re, gb, n)
CLOSE_READER(re, gb)
return code;
}