More code, closer to working, still builds.

This commit is contained in:
Simon Brooke 2026-04-15 22:47:44 +01:00
parent c9f50572ab
commit f751fc8a09
14 changed files with 138 additions and 133 deletions

View file

@ -17,12 +17,12 @@
#include "memory/pointer.h"
struct pso_pointer search( struct pso_pointer key,
struct pso_pointer store, bool return_key );
struct pso_pointer store, bool return_key );
struct pso_pointer c_assoc( struct pso_pointer key, struct pso_pointer store );
struct pso_pointer c_interned( struct pso_pointer key,
struct pso_pointer store );
struct pso_pointer store );
bool c_internedp( struct pso_pointer key, struct pso_pointer store );
#endif