c-repl/src/include/utils.h

12 lines
172 B
C
Raw Normal View History

2023-12-08 15:59:45 +01:00
#ifndef DEF_UTILS_H
#define DEF_UTILS_H
#include "types.h"
using namespace std;
/**
* Returns the CodePosition of a node
*/
CodePosition get_node_pos(Node node);
#endif