From 3b2338f39c9a03b82dde437d24c81091d48cb989 Mon Sep 17 00:00:00 2001 From: Chris Hogan Date: Mon, 8 Apr 2019 16:25:47 -0500 Subject: [PATCH] Add ctl_printf_callback to ctlgeom.h --- utils/ctlgeom.h | 1 + 1 file changed, 1 insertion(+) diff --git a/utils/ctlgeom.h b/utils/ctlgeom.h index d437ea4..b5e9bf4 100644 --- a/utils/ctlgeom.h +++ b/utils/ctlgeom.h @@ -94,6 +94,7 @@ GEOMETRIC_OBJECT object_of_point(vector3 p, vector3 *shiftby); vector3 shift_to_unit_cell(vector3 p); extern matrix3x3 square_basis(matrix3x3 lattice_basis, vector3 size); extern void ctl_printf(const char *fmt, ...); +extern void (*ctl_printf_callback)(const char *s); typedef struct { vector3 low, high;