source: doc/generic_types/evaluation/c-print.h @ 33e22da

ADTaaron-thesisarm-ehast-experimentalcleanup-dtorsdeferred_resndemanglerenumforall-pointer-decayjacob/cs343-translationjenkins-sandboxnew-astnew-ast-unique-exprnew-envno_listpersistent-indexerpthread-emulationqualifiedEnumresolv-newwith_gc
Last change on this file since 33e22da was a381b46, checked in by Aaron Moss <a3moss@…>, 7 years ago

Minor cleanup, also filled in benchmark source appendix

  • Property mode set to 100644
File size: 231 bytes
Line 
1#pragma once
2#include <stdio.h>
3
4void print_string(FILE* out, const char* x);
5void print_bool(FILE* out, _Bool x);
6void print_char(FILE* out, char x);
7void print_int(FILE* out, int x);
8
9void print(FILE* out, const char* fmt, ...);
Note: See TracBrowser for help on using the repository browser.