5b71ad3441822f6c11e8d0842d66b22a42895639
[muddle-interpreter.git] / src / atom.h
1 /*
2 Copyright (C) 2017-2018 Keziah Wesley
3
4 You can redistribute and/or modify this file under the terms of the
5 GNU Affero General Public License as published by the Free Software
6 Foundation, either version 3 of the License, or (at your option) any
7 later version.
8
9 This file is distributed in the hope that it will be useful, but
10 WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 Affero General Public License for more details.
13
14 You should have received a copy of the GNU Affero General Public
15 License along with this file. If not, see
16 <http://www.gnu.org/licenses/>.
17 */
18
19 #ifndef ATOM_H
20 #define ATOM_H
21
22 #include "object.h"
23
24 typedef struct
25 {
26   evaltype type;                // UNBOUND/LOCI
27   // bindid
28   // value ptr
29   // oblist ptr
30   // type ptr
31   const char pname[];
32 } atom_body;
33
34 #endif