blob: e70d8f6366d318591903953107338fa4908dae4f (
plain)
1
2
3
4
5
6
7
8
9
10
|
#ifndef ENCRYPT_H
#define ENCRYPT_H
typedef void (*encrypt_fn_t)(char *message);
typedef void (*encrypt_arr_t[])(char *message);
void encrypt(char *message, encrypt_fn_t);
void encrypt_arr(char *message, encrypt_arr_t fn_arr, int size);
#endif /* ENCRYPT_H */
|