This commit is contained in:
klein panic
2025-02-01 16:14:45 -05:00
commit 3aff0baacf
82 changed files with 1694 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
#ifndef CAESAR_CIPHER_H
#define CAESAR_CIPHER_H
void encrypt(char *plaintext, int shift);
void decrypt(char *ciphertext, int shift);
#endif // CAESAR_CIPHER_H