Post Scarcity
A prototype for a post scarcity programming environment
Loading...
Searching...
No Matches
cursor.h
Go to the documentation of this file.
1/**
2 * cursor.h
3 *
4 * Declarations common to all cons space objects.
5 *
6 *
7 * (c) 2017 Simon Brooke <simon@journeyman.cc>
8 * Licensed under GPL version 2.0, or, at your option, any later version.
9 */
10
11#ifndef __cursor_h
12#define __cursor_h
13
14/**
15 * A cursor cell: 1397904707
16 */
17#define CURSORTAG "CURS"
18#define CURSORTV 1397904707
19
20/*
21 * there are two ways the cursor payload could be defined. One is that it
22 * could hold a `cons_pointer` that points to the canonical `VECP` cell
23 * that points to the `vector_space_object`; the other is that it could
24 * hold a `struct vector_space_object`
25
26#endif