#pragma once


typedef struct {
  int first_line;
  int first_column;
  int last_line;
  int last_column;
  int pos_start;
  int pos_end;
} file_loc_t;
