aboutsummaryrefslogtreecommitdiff
path: root/src/util.h
diff options
context:
space:
mode:
authorFranklin Wei <git@fwei.tk>2016-01-31 19:53:45 -0500
committerFranklin Wei <git@fwei.tk>2016-01-31 19:53:45 -0500
commit7e223238ec9d6711290b1718c44cfe8158477b71 (patch)
tree495d79d0dc26e39c9065c6ceb7d16b9a3e76561d /src/util.h
parentc87ef9230be5e52c9fa532ee0a3eba63960fc76d (diff)
downloadnetcosm-7e223238ec9d6711290b1718c44cfe8158477b71.zip
netcosm-7e223238ec9d6711290b1718c44cfe8158477b71.tar.gz
netcosm-7e223238ec9d6711290b1718c44cfe8158477b71.tar.bz2
netcosm-7e223238ec9d6711290b1718c44cfe8158477b71.tar.xz
bump version to 0.5.0-rc1
* implements objects using reference counts rather than copying * implements both room-local and global verbs * refactors the world_* functions into a separate module * numerous other changes
Diffstat (limited to 'src/util.h')
-rw-r--r--src/util.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/util.h b/src/util.h
index 02030c2..4c4824e 100644
--- a/src/util.h
+++ b/src/util.h
@@ -39,3 +39,6 @@ bool read_bool(int fd);
void write_uint32(int fd, uint32_t i);
uint32_t read_uint32(int fd);
+
+void write_size(int fd, size_t);
+size_t read_size(int fd);