This commit is contained in:
Connor Lane Smith
2011-06-10 02:56:13 +01:00
parent e180a91172
commit 5156758e21
8 changed files with 62 additions and 31 deletions

15
util/putword.c Normal file
View File

@@ -0,0 +1,15 @@
/* See LICENSE file for copyright and license details. */
#include <stdbool.h>
#include <stdio.h>
#include "../util.h"
void
putword(const char *s)
{
static bool first = true;
if(!first)
putchar(' ');
fputs(s, stdout);
first = false;
}