mirror of
https://github.com/theoludwig/programming-challenges.git
synced 2025-05-18 12:02:53 +02:00
feat(solutions): add caesar-cipher/c/function
This commit is contained in:
23
challenges/caesar-cipher/solutions/c/function/string.h
Normal file
23
challenges/caesar-cipher/solutions/c/function/string.h
Normal file
@ -0,0 +1,23 @@
|
||||
#ifndef STRING_H
|
||||
#define STRING_H
|
||||
|
||||
#define ALPHABET "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
|
||||
|
||||
/**
|
||||
* @brief Shift the alphabet by a given amount.
|
||||
*
|
||||
* @param shift
|
||||
* @return char*
|
||||
*/
|
||||
char* string_shift_alphabet(int shift);
|
||||
|
||||
/**
|
||||
* @brief Encrypts a string using the Caesar cipher.
|
||||
*
|
||||
* @param string
|
||||
* @param shift
|
||||
* @return char*
|
||||
*/
|
||||
char* string_caesar_cipher(char* string, int shift);
|
||||
|
||||
#endif
|
Reference in New Issue
Block a user