2 * Copyright © 2017 Keith Packard <keithp@keithp.com>
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation, either version 2 of the License, or
7 * (at your option) any later version.
9 * This program 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 * General Public License for more details.
17 static void bool_mark(void *addr)
22 static int bool_size(void *addr)
25 return sizeof (struct ao_lisp_bool);
28 static void bool_move(void *addr)
33 const struct ao_lisp_type ao_lisp_bool_type = {
41 ao_lisp_bool_write(ao_poly v)
43 struct ao_lisp_bool *b = ao_lisp_poly_bool(v);
51 #ifdef AO_LISP_MAKE_CONST
53 struct ao_lisp_bool *ao_lisp_true, *ao_lisp_false;
56 ao_lisp_bool_get(uint8_t value)
58 struct ao_lisp_bool **b;
66 *b = ao_lisp_alloc(sizeof (struct ao_lisp_bool));
67 (*b)->type = AO_LISP_BOOL;