Revision faa952ec7d95b916a2fb26559cb6541f306cdaff authored by Eric Fischer on 26 July 2018, 23:17:08 UTC, committed by GitHub on 26 July 2018, 23:17:08 UTC
Add an option to automatically assign ids to features
2 parent s 50b1ead + 6f295f2
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