summaryrefslogtreecommitdiff
path: root/readall.h
diff options
context:
space:
mode:
Diffstat (limited to 'readall.h')
-rw-r--r--readall.h14
1 files changed, 0 insertions, 14 deletions
diff --git a/readall.h b/readall.h
deleted file mode 100644
index 94c2bfe..0000000
--- a/readall.h
+++ /dev/null
@@ -1,14 +0,0 @@
-#ifndef READALL_H
-#define READALL_H
-
-#include <stdio.h>
-
-#define READALL_OK 0 /* Success */
-#define READALL_INVALID -1 /* Invalid parameters */
-#define READALL_ERROR -2 /* Stream error */
-#define READALL_TOOMUCH -3 /* Too much input */
-#define READALL_NOMEM -4 /* Out of memory */
-
-int readall(FILE *in, char **dataptr, size_t *sizeptr);
-
-#endif