Revision 00aed42c0e30489d12e443f3e4b9081930c5a180 authored by Eric Fischer on 21 July 2017, 06:10:45 UTC, committed by Eric Fischer on 21 July 2017, 06:10:45 UTC
1 parent 518c8db
Raw File
pool.hpp
#ifndef POOL_HPP
#define POOL_HPP

struct stringpool {
	long long left;
	long long right;
	long long off;
};

long long addpool(struct memfile *poolfile, struct memfile *treefile, const char *s, char type);

#endif
back to top