oboeru

a collection of simple, scriptable flashcard programs
git clone anongit@rnpnr.xyz:oboeru.git
Log | Files | Refs | Feed | README | LICENSE

util.h (177B)


      1 /* See LICENSE for license details. */
      2 #define LEN(a) (sizeof(a) / sizeof(*a))
      3 
      4 void die(const char *, ...);
      5 void *xmalloc(size_t);
      6 void *xreallocarray(void *, size_t, size_t);