hydroforth/include/hydroforth/location.h
2023-08-04 21:42:01 +02:00

10 lines
118 B
C

#ifndef __HF__LOCATION_H__
#define __HF__LOCATION_H__
struct hf__location {
size_t start;
size_t end;
};
#endif