aboutsummaryrefslogtreecommitdiff
path: root/src/libString/s_putc.c
blob: 29a385d767be5b092780cb80a7b99c6f3f691d38 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include <u.h>
#include <libc.h>
#include "libString.h"

void
s_putc(String *s, int c)
{
	if(s->ref > 1)
		sysfatal("can't s_putc a shared string");
	if (s->ptr >= s->end)
		s_grow(s, 2);
	*(s->ptr)++ = c;
}