From 14c854543b1a3cf344a371a5b45595657f95786b Mon Sep 17 00:00:00 2001 From: leochanj105 Date: Tue, 26 Oct 2021 13:22:32 -0400 Subject: add deadlines and costs --- baseline/source/susan/wccfile.h | 24 ------------------------ 1 file changed, 24 deletions(-) delete mode 100644 baseline/source/susan/wccfile.h (limited to 'baseline/source/susan/wccfile.h') diff --git a/baseline/source/susan/wccfile.h b/baseline/source/susan/wccfile.h deleted file mode 100644 index 9314361..0000000 --- a/baseline/source/susan/wccfile.h +++ /dev/null @@ -1,24 +0,0 @@ -#ifndef WCC_FILE_H -#define WCC_FILE_H - -enum _Origin_ { WCCSEEK_SET, WCCSEEK_CUR, WCCSEEK_END }; -typedef enum _Origin_ Origin; -typedef unsigned int size_x; - -#define EOFX -1 - -struct wccFILE { - char* data; - size_x size; - unsigned cur_pos; -}; - -size_x susan_wccfread (void* ptr, size_x size, size_x count, struct wccFILE* stream); -int susan_wccfseek (struct wccFILE* stream, long int offset, Origin origin); -int susan_wccfgetpos (struct wccFILE* stream, unsigned* position); -int susan_wccfeof (struct wccFILE* stream); -int susan_wccfgetc (struct wccFILE *stream); -char *susan_wccfgets (char *str, int num, struct wccFILE *stream ); - -#endif - -- cgit v1.2.2