Revision 1fa797bc17f0b8d4c4a88a85595ca0e9bbd61752 authored by Blake Thompson on 01 October 2020, 19:54:02 UTC, committed by Blake Thompson on 01 October 2020, 19:54:02 UTC
1 parent 62554b6
Raw File
pool.hpp
#ifndef POOL_HPP
#define POOL_HPP

struct stringpool {
	unsigned long left = 0;
	unsigned long right = 0;
	unsigned long off = 0;
};

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

#endif
back to top