#ifndef TEAPROT_H #define TEAPROT_H /* * TEA Total Copyright (c) Alex Holden 2000. * * This code is public domain; you can do whatever you want with it, though I * would prefer you to contribute any bug fixes back to me if possible. * This software comes with NO WARRANTY WHATSOEVER, not even the implied * warranties of merchantability and fitness for a particular purpose. */ extern void choose_start_seq(teastate *state); extern int read_header(teastate *state); extern int decode_block(teastate *state); extern int encode_block(teastate *state); #endif