sbase/util/putword.c

19 lines
247 B
C
Raw Normal View History

2013-08-29 10:11:26 +00:00
/* 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;
2014-07-09 15:39:32 +00:00
if (!first)
2013-08-29 10:11:26 +00:00
putchar(' ');
fputs(s, stdout);
first = false;
}