#ifndef __LANG5_D_H #define __LANG5_D_H /* 6D programming language Copyright (C) 2011 Danny Milosavljevic This program is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this program. If not, see . */ #include #include "Values/Values" #include "Scanners/Scanner" #include "Allocators/Allocators" #include "6D/Values" #include "6D/Operations" BEGIN_NAMESPACE_6D(Parsers) struct Lang; void initLang(void); NodeT Lang_parse1(FILE* f, const char* name); NodeT Lang_parse1OPL(NODET OPL, FILE* f, const char* name); NodeT Lang_withDefaultEnv(NODET body); void Lang_init(struct Lang* self, NODET OPL); size_t Lang_getSize(void); struct Lang* Lang_new(NODET OPL); END_NAMESPACE_6D(Parsers) #endif /* ndef __LANG5_D_H */