8 lines
212 B
C
8 lines
212 B
C
#ifndef SUBSTITUTION_CIPHER_H
|
|
#define SUBSTITUTION_CIPHER_H
|
|
|
|
void substitution_encrypt(char *message, const char *key);
|
|
void substitution_decrypt(char *message, const char *key);
|
|
|
|
#endif // SUBSTITUTION_CIPHER_H
|