// mc_blowfish.h //--------------------------------------------------------------------------- //--------------------------------------------------------------------------- // To prevent multiple includes #ifndef _mcblowfishh #define _mcblowfishh //--------------------------------------------------------------------------- //--------------------------------------------------------------------------- // forward declarations char *encrypt_string(char *key, char *str); char *decrypt_string(char *key, char *str); //--------------------------------------------------------------------------- //--------------------------------------------------------------------------- // header guard #endif //---------------------------------------------------------------------------