iris

small scheme interpreter
git clone git://git.2f30.org/iris
Log | Files | Refs | LICENSE

util.h (184B)


      1 /* See LICENSE file for copyright and license details. */
      2 #define LEN(x) (sizeof (x) / sizeof *(x))
      3 
      4 void *ecalloc(size_t, size_t);
      5 void *emalloc(size_t);
      6 char *estrdup(const char *);