Post Scarcity
A prototype for a post scarcity programming environment
Loading...
Searching...
No Matches
dump.h
Go to the documentation of this file.
1/*
2 * dump.h
3 *
4 * Dump representations of both cons space and vector space objects.
5 *
6 * (c) 2018 Simon Brooke <simon@journeyman.cc>
7 * Licensed under GPL version 2.0, or, at your option, any later version.
8 */
9
10#include <stdbool.h>
11#include <stdint.h>
12#include <stdio.h>
13/*
14 * wide characters
15 */
16#include <wchar.h>
17#include <wctype.h>
18
19#ifndef __dump_h
20#define __dump_h
21
22
23void dump_object( URL_FILE * output, struct cons_pointer pointer );
24
25#endif
An indirect pointer to a cons cell.
void dump_object(URL_FILE *output, struct cons_pointer pointer)
dump the object at this cons_pointer to this output stream.
Definition dump.c:59