/* * dump.h * * Dump representations of both cons space and vector space objects. * * (c) 2018 Simon Brooke * Licensed under GPL version 2.0, or, at your option, any later version. */ #include #include #include /* * wide characters */ #include #include #ifndef __dump_h #define __dump_h void dump_object( FILE * output, struct cons_pointer pointer ); #endif