8 lines
217 B
C++
8 lines
217 B
C++
#pragma once
|
|
#include <string>
|
|
|
|
void scope_init();
|
|
void scope_open_local();
|
|
void scope_close_local();
|
|
const int scope_declare_variable(const std::string name, const int type, const int length);
|
|
//scope_get_variable...
|