summaryrefslogtreecommitdiff
path: root/C/HF/chap7/encrypt.c
blob: 1b5ce25ff136217a32a22be6a8a0dedc7492935c (plain)
1
2
3
4
5
6
#include "encrypt.h"
typedef void (*encrypt_fn_t)(char *message);

void encrypt(char *message, encrypt_fn_t encrypt_fn) {
	encrypt_fn(message);
}