sbase/libutil/putword.c

17 lines
217 B
C
Raw Normal View History

2011-06-09 21:56:13 -04:00
/* See LICENSE file for copyright and license details. */
#include <stdio.h>
2011-06-09 21:56:13 -04:00
#include "../util.h"
void
putword(const char *s)
{
static int first = 1;
2011-06-09 21:56:13 -04:00
if (!first)
2011-06-09 21:56:13 -04:00
putchar(' ');
2011-06-09 21:56:13 -04:00
fputs(s, stdout);
first = 0;
2011-06-09 21:56:13 -04:00
}