diff main.c @ 1043:acf7bb2b99e2 draft

Introduce libbuf analogous to toybuf but for use by lib/*.c. Change readfile() semantics to be able to read into an existing buffer, or malloc its own if that's NULL.
author Rob Landley <rob@landley.net>
date Tue, 03 Sep 2013 17:56:28 -0500
parents 40d0c96a8e89
children ac4a0cde89c2
line wrap: on
line diff
--- a/main.c	Tue Sep 03 08:30:47 2013 -0500
+++ b/main.c	Tue Sep 03 17:56:28 2013 -0500
@@ -20,7 +20,7 @@
 
 struct toy_context toys;
 union global_union this;
-char toybuf[4096];
+char toybuf[4096], libbuf[4096];
 
 struct toy_list *toy_find(char *name)
 {