summaryrefslogtreecommitdiff
path: root/src/tools/util.h
diff options
context:
space:
mode:
authorSteven Fuller <relnev@icculus.org>2001-08-15 05:23:32 +0000
committerPatryk Obara <dreamer.tan@gmail.com>2019-08-20 02:22:36 +0200
commit3ea03344ec2b9c5cd17b0ef253adece705558019 (patch)
treeea26fd2828bb9e4c55f32f6239e092221ea456e4 /src/tools/util.h
parent14d3cc45bcf1a9dce1e982fd82b79d7053be4048 (diff)
Removing junk.
Diffstat (limited to 'src/tools/util.h')
-rw-r--r--src/tools/util.h21
1 files changed, 0 insertions, 21 deletions
diff --git a/src/tools/util.h b/src/tools/util.h
deleted file mode 100644
index d11a43f..0000000
--- a/src/tools/util.h
+++ /dev/null
@@ -1,21 +0,0 @@
-#ifndef __UTIL_H__
-#define __UTIL_H__
-
-#include <stdint.h>
-
-/* TODO: need unsigned version, way to signify success/EOF */
-/* ReadBytes */
-
-int32_t ReadInt32M(FILE *fp);
-int32_t ReadInt24M(FILE *fp);
-int16_t ReadInt16M(FILE *fp);
-int32_t ReadInt32L(FILE *fp);
-int32_t ReadInt24L(FILE *fp);
-int16_t ReadInt16L(FILE *fp);
-
-int8_t ReadInt8(FILE *fp);
-
-int filelength(int filedes);
-int fsize(char *file_name);
-
-#endif