Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- void encrypt (char e[] )
- {
- for( int i=0; e[i] != '\0'; ++i ) ++e[i];
- } // encrypt
- //decrypt data
- void decrypt( char * ePtr ) {
- for( ; * ePtr != '\0'; ==* ePtr ) --(* ePtr);
- }
Advertisement
Add Comment
Please, Sign In to add comment