2020-12-31 11:07:26 -05:00
|
|
|
#ifndef OS_H
|
|
|
|
#define OS_H
|
|
|
|
#include "parser-tree.h"
|
|
|
|
|
2021-01-03 14:08:54 -05:00
|
|
|
SUBROUTDEC* getossubroutdec(CLASS* os, SUBROUTCALL* call);
|
|
|
|
CLASS* getosclass(CLASS* os, const char* name);
|
|
|
|
CLASS* mkos();
|
|
|
|
void freeos(CLASS* os);
|
2020-12-31 11:07:26 -05:00
|
|
|
|
|
|
|
#endif
|