Lots more code written, and I think most of it's OK; but it doesn't compile yet.

This commit is contained in:
Simon Brooke 2026-03-26 09:01:46 +00:00
parent 604fca3c24
commit 6c4be8f283
19 changed files with 634 additions and 7 deletions

21
src/c/ops/eq.h Normal file
View file

@ -0,0 +1,21 @@
/**
* ops/eq.h
*
* Post Scarcity Software Environment: eq.
*
* Test for pointer equality.
*
* (c) 2026 Simon Brooke <simon@journeyman.cc>
* Licensed under GPL version 2.0, or, at your option, any later version.
*/
#ifndef __psse_ops_eq_h
#define __psse_ops_eq_h
bool eq( struct pso_pointer a, struct pso_pointer b);
struct pso_pointer lisp_eq( struct stack_frame *frame,
struct pso_pointer frame_pointer,
struct pso_pointer env );
#endif