Herb C Reference
Loading...
Searching...
No Matches
location.h
Go to the documentation of this file.
1#ifndef HERB_LOCATION_H
2#define HERB_LOCATION_H
3
4#include <stdint.h>
5#include <stdlib.h>
6
7#include "position.h"
8
13
14void location_from(
15 location_T* location,
16 uint32_t start_line,
17 uint32_t start_column,
18 uint32_t end_line,
19 uint32_t end_column
20);
21
22#endif
struct LOCATION_STRUCT location_T
void location_from(location_T *location, uint32_t start_line, uint32_t start_column, uint32_t end_line, uint32_t end_column)
Definition location.c:4
Definition location.h:9
position_T end
Definition location.h:11
position_T start
Definition location.h:10
Definition position.h:8