Compiles again, now with bootstrap-layer print implemented, but not yet tested.
To get print implemented, I also had to implement a lot of other things.
This commit is contained in:
parent
2b22780ccf
commit
364d7d2c7b
23 changed files with 1616 additions and 57 deletions
|
|
@ -23,6 +23,8 @@
|
|||
#include <wchar.h>
|
||||
#include <wctype.h>
|
||||
|
||||
#include "memory/pointer.h"
|
||||
|
||||
/**
|
||||
* @brief Print messages debugging memory allocation.
|
||||
*
|
||||
|
|
@ -102,10 +104,14 @@ extern int verbosity;
|
|||
|
||||
void debug_print( wchar_t *message, int level, int indent );
|
||||
|
||||
void debug_print_object( struct pso_pointer object, int level, int indent );
|
||||
|
||||
void debug_dump_object( struct pso_pointer object, int level, int indent );
|
||||
|
||||
void debug_print_128bit( __int128_t n, int level );
|
||||
|
||||
void debug_println( int level );
|
||||
|
||||
void debug_printf( int level, int indent, wchar_t *format, ... );
|
||||
|
||||
#endif
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue