kiba-engine
pointer.h
1 #pragma once
2 
3 #include <kiba/format/buffer.h>
4 #include <kiba/format/format.h>
5 
6 b8 format_read_address(format_buffer *buf, format_options options, uptr *value);
7 b8 format_write_address(format_buffer *buf, format_options options, uptr value);
8 
9 FORMAT_FUNCTION(format_read_uptr);
10 FORMAT_FUNCTION(format_write_uptr);
11 FORMAT_FUNCTION(format_read_pointer);
12 FORMAT_FUNCTION(format_write_pointer);