Return Styles: Pseud0ch, Terminal, Valhalla, NES, Geocities, Blue Moon. Entire thread

suckless unix tools

Name: Anonymous 2015-04-02 21:41

Name: Anonymous 2015-04-28 22:38

Wow, check out this putword implementation
/* See LICENSE file for copyright and license details. */
#include <stdio.h>

#include "../util.h"

void
putword(FILE *fp, const char *s)
{
static int first = 1;

if (!first)
fputc(' ', fp);

fputs(s, fp);
first = 0;
}

Newer Posts
Don't change these.
Name: Email:
Entire Thread Thread List