// mc_blowfishnew.h //--------------------------------------------------------------------------- //--------------------------------------------------------------------------- // To prevent multiple includes #ifndef _newblowfishh #define _newblowfishh //--------------------------------------------------------------------------- //--------------------------------------------------------------------------- // forward declarations char *encrypt_string_new(char *key, char *str); char *decrypt_string_new(char *key, char *str); //--------------------------------------------------------------------------- //--------------------------------------------------------------------------- // header guard #endif //---------------------------------------------------------------------------