/* * $Id: stx.c,v 1.3 2005-05-08 10:44:58 bacon Exp $ */ #include #include #include #include xp_stx_t* xp_stx_open (xp_stx_t* stx, xp_stx_word_t capacity) { if (stx == XP_NULL) { stx = (xp_stx_t*) xp_malloc (xp_sizeof(stx)); if (stx == XP_NULL) return XP_NULL; stx->__malloced = xp_true; } else stx->__malloced = xp_false; if (xp_stx_memory_open (&stx->memory, capacity) == XP_NULL) { if (stx->__malloced) xp_free (stx); return XP_NULL; } stx->nil = XP_STX_NIL; stx->true = XP_STX_TRUE; stx->false = XP_STX_FALSE; return stx; } void xp_stx_close (xp_stx_t* stx) { xp_stx_memory_close (&stx->memory); if (stx->__malloced) xp_free (stx); } int xp_stx_bootstrap (xp_stx_t* stx) { stx->nil = xp_stx_memory_alloc (&stx->memory, 0); stx->true = xp_stx_memory_alloc (&stx->memory, 0); stx->false = xp_stx_memory_alloc (&stx->memory, 0); xp_assert (stx->nil == XP_STX_NIL); xp_assert (stx->true == XP_STX_TRUE); xp_assert (stx->false == XP_STX_FALSE); return 0; }