2 Copyright (C) 2017-2018 Keziah Wesley
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
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.
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/>.
24 typedef struct atom_body atom_body;
26 // Return an atom with a newly-allocated body.
27 atom_object atom_create (const char *name, uint32_t namelen);
29 atom_body *ATOM_BODY (heap_ptr p);
31 const char *atom_pname (atom_object o);
33 inline static uint32_t
34 atom_namelen (atom_object body)
36 return body.val.namelen;
39 heap_ptr atom_body_alloc (uint32_t ct);