2011-06-10 01:56:13 +00:00
|
|
|
/* See LICENSE file for copyright and license details. */
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include <stdio.h>
|
2013-03-05 20:46:48 +00:00
|
|
|
|
2011-06-10 01:56:13 +00:00
|
|
|
#include "../util.h"
|
|
|
|
|
|
|
|
void
|
|
|
|
putword(const char *s)
|
|
|
|
{
|
|
|
|
static bool first = true;
|
|
|
|
|
|
|
|
if(!first)
|
|
|
|
putchar(' ');
|
2013-03-05 20:46:48 +00:00
|
|
|
|
2011-06-10 01:56:13 +00:00
|
|
|
fputs(s, stdout);
|
|
|
|
first = false;
|
|
|
|
}
|
2013-03-05 20:46:48 +00:00
|
|
|
|