Rename util/ to libutil/
This commit is contained in:
16
libutil/putword.c
Normal file
16
libutil/putword.c
Normal file
@@ -0,0 +1,16 @@
|
||||
/* See LICENSE file for copyright and license details. */
|
||||
#include <stdio.h>
|
||||
|
||||
#include "../util.h"
|
||||
|
||||
void
|
||||
putword(const char *s)
|
||||
{
|
||||
static int first = 1;
|
||||
|
||||
if (!first)
|
||||
putchar(' ');
|
||||
|
||||
fputs(s, stdout);
|
||||
first = 0;
|
||||
}
|
Reference in New Issue
Block a user