17 lines
377 B
C
17 lines
377 B
C
/**
|
|
* 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_ */
|