view src/ploki/text.c @ 12268:6bbbe2a95120 draft

<b_jonas> slashlearn euclid//Euclid is a short geeky game in which the goal is to do Euclidean compass and straightedge constructions in as few steps as possible. It runs in the browser, found at "http://www.euclidthegame.com/". It was popular among #esoteric regulars in 2016-07.
author HackEso <hackeso@esolangs.org>
date Mon, 16 Dec 2019 23:02:52 +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];
}