comparison src/c/lacweb.c @ 102:5f04adf47f48

Writing HTML
author Adam Chlipala <adamc@hcoop.net>
date Thu, 10 Jul 2008 14:02:54 -0400
parents
children d101cb1efe55
comparison
equal deleted inserted replaced
101:717b6f8d8505 102:5f04adf47f48
1 #include <stdio.h>
2
3 #include "types.h"
4
5 lw_unit lw_unit_v = {};
6
7 void lw_write(const char* s) {
8 fputs(s, stdout);
9 }