rcx

miscellaneous C library
git clone git://git.rr3.xyz/rcx
Log | Files | Refs | README | LICENSE

deque-defaults.h (317B)


      1 #undef R_DEQUE_STATIC
      2 #define R_DEQUE_STATIC
      3 
      4 #undef R_DEQUE_METHOD
      5 #define R_DEQUE_METHOD(name, prefix) JOIN(JOIN(prefix,_),name)
      6 
      7 #undef R_DEQUE_MIN_BITS
      8 #define R_DEQUE_MIN_BITS 3 /* 1<<3 == 8 elements */
      9 
     10 #undef R_DEQUE_REALLOCN
     11 #define R_DEQUE_REALLOCN r_ereallocn
     12 
     13 #undef R_DEQUE_FREE
     14 #define R_DEQUE_FREE free