Post Scarcity
A prototype for a post scarcity programming environment
Loading...
Searching...
No Matches
meta.h
Go to the documentation of this file.
1/*
2 * meta.h
3 *
4 * Get metadata from a cell which has it.
5 *
6 * (c) 2019 Simon Brooke <simon@journeyman.cc>
7 * Licensed under GPL version 2.0, or, at your option, any later version.
8 */
9
10#ifndef __psse_meta_h
11#define __psse_meta_h
12
13
14struct cons_pointer lisp_metadata( struct stack_frame *frame,
15 struct cons_pointer frame_pointer,
16 struct cons_pointer env );
17
18#endif
An indirect pointer to a cons cell.
A stack frame.
struct cons_pointer lisp_metadata(struct stack_frame *frame, struct cons_pointer frame_pointer, struct cons_pointer env)
Function: get metadata describing my first argument.
Definition meta.c:20