view src/ploki/text.c @ 11633:a56795ce5d0a draft

<oerjan> le/rn hammurabi//If anyone creates a webpage that unexpectedly starts playing sounds, he shall be put to death. http://45338297.weebly.com/laws-on-property-and-theft.html
author HackEso <hackeso@esolangs.org>
date Tue, 23 Oct 2018 23:09:55 +0000
parents ac0403686959
children
line wrap: on
line source

#include "text.h"
#include "xmalloc.h"

#include <stddef.h>

enum {MAGIC = 42};

void text_on(struct text *p) {
	p->start = xmalloc(p->size = MAGIC, sizeof *p->start);
	p->start[p->length = 0] = NULL;
}

void text_off(struct text *p) {
	while (p->length) {
		--p->length;
		op_end(p->start[p->length]);
		xfree(p->start[p->length]);
	}
	xfree(p->start);
}

void text_1(struct text *p) {
	while (p->length >= p->size - 1) {
		p->start = xrealloc(p->start, p->size *= 2);
	}
}

struct op *text_push(struct text *p, const struct op *src) {
	text_1(p);
	p->start[p->length] = xmalloc(1, sizeof *p->start[p->length]);
	*p->start[p->length++] = *src;
	p->start[p->length] = NULL;
	return p->start[p->length - 1];
}