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/rijndael_enc/rijndael_enc_libc.h | 24 ------------------------ 1 file changed, 24 deletions(-) delete mode 100644 baseline/source/rijndael_enc/rijndael_enc_libc.h (limited to 'baseline/source/rijndael_enc/rijndael_enc_libc.h') diff --git a/baseline/source/rijndael_enc/rijndael_enc_libc.h b/baseline/source/rijndael_enc/rijndael_enc_libc.h deleted file mode 100644 index 6a01397..0000000 --- a/baseline/source/rijndael_enc/rijndael_enc_libc.h +++ /dev/null @@ -1,24 +0,0 @@ -#ifndef RIJNDAEL_ENC_LIBC_H -#define RIJNDAEL_ENC_LIBC_H - -int rijndael_enc_toupper ( int c ); - -enum _Origin_ { RIJNDAEL_ENC_SEEK_SET, RIJNDAEL_ENC_SEEK_CUR, RIJNDAEL_ENC_SEEK_END }; -typedef enum _Origin_ Origin; -struct rijndael_enc_FILE { - unsigned char *data; - unsigned long size; - unsigned cur_pos; -}; - -unsigned long rijndael_enc_fread ( void *ptr, unsigned long size, - unsigned long count, struct rijndael_enc_FILE *stream ); -unsigned long rijndael_enc_fwrite ( const void *ptr, unsigned long size, - unsigned long count, struct rijndael_enc_FILE *stream ); -int rijndael_enc_fseek ( struct rijndael_enc_FILE *stream, long int offset, - Origin origin ); -int rijndael_enc_fgetpos( struct rijndael_enc_FILE *stream, - unsigned *position ); -int rijndael_enc_feof ( struct rijndael_enc_FILE *stream ); - -#endif // RIJNDAEL_ENC_LIBC_H -- cgit v1.2.2