1 2 3 4 5 6 7
#ifndef ENCRYPT_H #define ENCRYPT_H typedef void (*encrypt_fn_t)(char *message); void encrypt(char *message, encrypt_fn_t); #endif /* ENCRYPT_H */