annotate src/c/lacweb.c @ 104:b1e5398a7f30

Initial HTML attributes support
author Adam Chlipala <adamc@hcoop.net>
date Thu, 10 Jul 2008 15:04:32 -0400
parents 5f04adf47f48
children d101cb1efe55
rev   line source
adamc@102 1 #include <stdio.h>
adamc@102 2
adamc@102 3 #include "types.h"
adamc@102 4
adamc@102 5 lw_unit lw_unit_v = {};
adamc@102 6
adamc@102 7 void lw_write(const char* s) {
adamc@102 8 fputs(s, stdout);
adamc@102 9 }