hydroforth/include/hydroforth/location.h

10 lines
118 B
C
Raw Normal View History

2023-08-04 19:42:01 +00:00
#ifndef __HF__LOCATION_H__
#define __HF__LOCATION_H__
struct hf__location {
size_t start;
size_t end;
};
#endif