1 #ifndef RCC_H
2 #define RCC_H
3 
4 #ifdef __cplusplus
5 extern "C" {
6 #endif
7 
8 char *rcc_reencode (char *);
9 void rcc_init ();
10 void rcc_cleanup ();
11 
12 #ifdef __cplusplus
13 }
14 #endif
15 
16 #endif
17