rot26-rs 0.1.2

(Joke) no_std Implementation of thr ROT-26 algorithem with a C interface
Documentation
#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