Brought dump in from 0.0.6. This may be a mistake and I may reverse it.

This commit is contained in:
Simon Brooke 2026-04-26 09:44:09 +01:00
parent 22b0160a26
commit aff1430762
2 changed files with 286 additions and 0 deletions

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

@ -0,0 +1,17 @@
/**
* memory/dump.h
*
* Dump objects to the error stream for.debuging purposes
*
* (c) 2026 Simon Brooke <simon@journeyman.cc>
* Licensed under GPL version 2.0, or, at your option, any later version.
*/
#ifndef SRC_C_MEMORY_DUMP_H_
#define SRC_C_MEMORY_DUMP_H_
void dump_object( URL_FILE *output, struct pso_pointer pointer );
#endif /* SRC_C_MEMORY_DUMP_H_ */