2024-02-17 16:35:35 -08:00
|
|
|
#pragma once
|
2024-03-18 09:57:49 -07:00
|
|
|
|
|
|
|
// Type info and methods for "Memory" opaque type
|
|
|
|
|
2024-02-17 16:35:35 -08:00
|
|
|
#include <gc/cord.h>
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
|
|
|
|
#include "types.h"
|
|
|
|
|
2024-03-29 09:54:31 -07:00
|
|
|
extern const TypeInfo $Memory;
|
|
|
|
CORD Memory$as_text(const void *p, bool colorize, const TypeInfo *type);
|
2024-02-17 16:35:35 -08:00
|
|
|
|
|
|
|
// vim: ts=4 sw=0 et cino=L2,l1,(0,W4,m1,\:0
|