X-Git-Url: https://git.llucax.com/z.facultad/75.06/jacu.git/blobdiff_plain/efbfacc87590729a6790eecee98b91d55615f881..69bddb46f46871d27bcf797cd6fae14430802380:/src/statichuff/statichuff.h?ds=sidebyside diff --git a/src/statichuff/statichuff.h b/src/statichuff/statichuff.h index eac6505..8c3502d 100644 --- a/src/statichuff/statichuff.h +++ b/src/statichuff/statichuff.h @@ -1,5 +1,9 @@ +#ifndef _STATICHUFF_H_ +#define _STATICHUFF_H_ + #include +#include typedef unsigned long int t_freq; @@ -14,3 +18,8 @@ typedef struct t_code { unsigned long int code; unsigned char codelength; } SHUFFCODE; + +int shuff_decode_file(char *inputfile, char *outputfile); +int shuff_encode_file(char *inputfile, char *outputfile); + +#endif /* _STATICHUFF_H_ */