2011-06-09 21:56:13 -04:00
|
|
|
/* See LICENSE file for copyright and license details. */
|
|
|
|
#include <stdio.h>
|
2013-03-05 15:46:48 -05:00
|
|
|
|
2011-06-09 21:56:13 -04:00
|
|
|
#include "../util.h"
|
|
|
|
|
|
|
|
void
|
2015-04-21 12:40:57 -04:00
|
|
|
putword(FILE *fp, const char *s)
|
2011-06-09 21:56:13 -04:00
|
|
|
{
|
2014-11-13 15:24:47 -05:00
|
|
|
static int first = 1;
|
2011-06-09 21:56:13 -04:00
|
|
|
|
2014-11-13 13:54:28 -05:00
|
|
|
if (!first)
|
2015-04-21 12:48:47 -04:00
|
|
|
fputc(' ', fp);
|
2013-03-05 15:46:48 -05:00
|
|
|
|
2015-04-21 12:40:57 -04:00
|
|
|
fputs(s, fp);
|
2014-11-13 15:24:47 -05:00
|
|
|
first = 0;
|
2011-06-09 21:56:13 -04:00
|
|
|
}
|