2013-08-29 06:11:26 -04: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 11:39:32 -04:00
|
|
|
if (!first)
|
2013-08-29 06:11:26 -04:00
|
|
|
putchar(' ');
|
|
|
|
|
|
|
|
fputs(s, stdout);
|
|
|
|
first = false;
|
|
|
|
}
|
|
|
|
|