rot26-rs 0.1.2

(Joke) no_std Implementation of thr ROT-26 algorithem with a C interface
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef ROT26_ALGO
#define ROT26_ALGO

#ifdef __cplusplus
extern "C" {
#endif // __cplusplus

extern const char *rot26_cipher(const char * data);

extern const char *rot26_decipher(const char * data);

#ifdef __cplusplus
}
#endif // __cplusplus

#endif // ROT26_ALGO