I think read will now read integers and symbols, but it's untested.

Everything compiles.
This commit is contained in:
Simon Brooke 2026-04-01 16:06:16 +01:00
parent cc8e96eda4
commit 9eb0d3c5a0
28 changed files with 594 additions and 293 deletions

17
src/c/memory/destroy.h Normal file
View file

@ -0,0 +1,17 @@
/**
* memory/destroy.h
*
* Despatcher for destructor functions when objects are freed.
*
* (c) 2026 Simon Brooke <simon@journeyman.cc>
* Licensed under GPL version 2.0, or, at your option, any later version.
*/
#ifndef __psse_memory_destroy_h
#define __psse_memory_destroy_h
#include "memory/pointer.h"
struct pso_pointer destroy( struct pso_pointer p);
#endif