/** * integer.h * * functions for integer cells. * * * (c) 2017 Simon Brooke * Licensed under GPL version 2.0, or, at your option, any later version. */ #ifndef __integer_h #define __integer_h double numeric_value( struct cons_pointer pointer); /** * Allocate an integer cell representing this value and return a cons pointer to it. */ struct cons_pointer make_integer( int value); #endif