#ifndef HV_IMAGE_H #define HV_IMAGE_H #include "hv/types.h" struct hv_image_span { uint64_t start; uint64_t end; uint64_t size; }; struct hv_image_span hv_image_span(void); bool hv_image_contains(uint64_t addr, uint64_t len); #endif