1#ifndef HV_IMAGE_H
2#define HV_IMAGE_H
3
4#include "hv/types.h"
5
6struct hv_image_span {
7 uint64_t start;
8 uint64_t end;
9 uint64_t size;
10};
11
12struct hv_image_span hv_image_span(void);
13bool hv_image_contains(uint64_t addr, uint64_t len);
14
15#endif