9 lines
162 B
C
9 lines
162 B
C
#ifndef CAESAR_CIPHER_H
|
|
#define CAESAR_CIPHER_H
|
|
|
|
void encrypt(char *plaintext, int shift);
|
|
void decrypt(char *ciphertext, int shift);
|
|
|
|
#endif // CAESAR_CIPHER_H
|
|
|