shithub: gridchat

ref: c5437c71ae33a1623057e1db393adb4a938c03db
dir: gridchat/chat-fmt.c

View raw version
#include <u.h>
#include <libc.h>
#include <bio.h>

#define LINELEN 80

const Rune sep = L'→';

void fatal(char *s) {
	sysfatal(s);
}

int main(void) {
	Biobuf *i;
	Biobuf *o;
	char *line;
	char *tok;
	int toklen;
	int linelen;
	int j;
	int f;

	i = Bfdopen(0, OREAD);
	o = Bfdopen(1, OWRITE);
	
	Blethal(i, fatal);
	Blethal(o, fatal);
	
	while((line = Brdstr(i, '\n', 1)) != nil) {
		f = 1;
		linelen = 0;
		tok = line;
		while((tok = strtok(tok, " ")) != 0) {
			int nicklen = 0;
			int toklen = strlen(tok);
			if (f) {
				nicklen = toklen;
				linelen = nicklen + 2;
				f = 0;
			}
			if (linelen + toklen + 1 > LINELEN) {
				Bputc(o, '\n');
				for(j = 0; j <= nicklen + 2; ++j, Bwrite(o, " ", 1));
				linelen = nicklen + 3;
			}
			Bwrite(o, tok, toklen);
			Bwrite(o, " ", 1);
			linelen += toklen + 1;
			tok = nil;
		}
		Bwrite(o, "\n", 1);
		Bflush(o);
	}
	Bterm(i);
	Bterm(o);

	return 0;
}