source:
doc/papers/OOPSLA17/evaluation/c-print.h
@
ba068c0
Last change on this file since ba068c0 was f4e3419d, checked in by , 7 years ago | |
---|---|
|
|
File size: 231 bytes |
Rev | Line | |
---|---|---|
[0d10090] | 1 | #pragma once |
2 | #include <stdio.h> | |
3 | ||
4 | void print_string(FILE* out, const char* x); | |
5 | void print_bool(FILE* out, _Bool x); | |
6 | void print_char(FILE* out, char x); | |
7 | void print_int(FILE* out, int x); | |
8 | ||
9 | void print(FILE* out, const char* fmt, ...); |
Note: See TracBrowser
for help on using the repository browser.