2011-06-10 02:56:13 +01:00
|
|
|
/* See LICENSE file for copyright and license details. */
|
|
|
|
#include <stdio.h>
|
2013-03-05 21:46:48 +01:00
|
|
|
|
2011-06-10 02:56:13 +01:00
|
|
|
#include "../util.h"
|
|
|
|
|
|
|
|
void
|
|
|
|
putword(const char *s)
|
|
|
|
{
|
2014-11-13 21:24:47 +01:00
|
|
|
static int first = 1;
|
2011-06-10 02:56:13 +01:00
|
|
|
|
2014-11-13 19:54:28 +01:00
|
|
|
if (!first)
|
2011-06-10 02:56:13 +01:00
|
|
|
putchar(' ');
|
2013-03-05 21:46:48 +01:00
|
|
|
|
2011-06-10 02:56:13 +01:00
|
|
|
fputs(s, stdout);
|
2014-11-13 21:24:47 +01:00
|
|
|
first = 0;
|
2011-06-10 02:56:13 +01:00
|
|
|
}
|