#ifndef MAIN_H #define MAIN_H #include //function prototypes char *base64Encode(unsigned char *input, int size); int base64Decode(unsigned char *string, int size); void stdinMode(char *buffer, int wrap, bool decode, char argv[]); #define DEFAULT_SIZE 4096 //the default size to make the buffer for input #define WRAP_CHAR 76 //default wrapping is 76 characters #endif