X-Git-Url: https://jxself.org/git/?a=blobdiff_plain;f=src%2Fprint.h;fp=src%2Fprint.h;h=9241ee2d28696363dfb93bc5c2e3c4f1e3af3db4;hb=8d55156675587a770c5654362bcbd3d2a98e4aa9;hp=0000000000000000000000000000000000000000;hpb=d6e1960007fcac962144382332f7a9c8c56fa3a1;p=muddle-interpreter.git diff --git a/src/print.h b/src/print.h new file mode 100644 index 0000000..9241ee2 --- /dev/null +++ b/src/print.h @@ -0,0 +1,25 @@ +/* +Copyright (C) 2017 Keziah Wesley + +You can redistribute and/or modify this file under the terms of the +GNU Affero General Public License as published by the Free Software +Foundation, either version 3 of the License, or (at your option) any +later version. + +This file 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 +Affero General Public License for more details. + +You should have received a copy of the GNU Affero General Public +License along with this file. If not, see +. +*/ + +#ifndef PRINT_H +#define PRINT_H + +typedef union object object; +void print_object (const object * o); + +#endif // PRINT_H