blob: ad38e3b8faee8c06dbcc436c79f8e06f3615beae (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#include <u.h>
#include <libc.h>
#include "String.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;
}
|