blob: 56be103ee8268f7d3b7f195649f0bac879be148b (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#pragma once
// Type info and methods for "Memory" opaque type
#include <stdbool.h>
#include <stdint.h>
#include "types.h"
extern const TypeInfo_t Memory$info;
Text_t Memory$as_text(const void *p, bool colorize, const TypeInfo_t *type);
|