11 lines
130 B
C
11 lines
130 B
C
#ifndef _location_h_
|
|
#define _location_h_
|
|
|
|
#include "pre.h"
|
|
|
|
typedef struct {
|
|
Str source;
|
|
i64 line, column;
|
|
} Location;
|
|
|
|
#endif
|