summaryrefslogtreecommitdiff
path: root/C/HF/chap7/encrypt.h
blob: 4e130e97891df2febeefdfc2a46da304e42cf45a (plain)
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 */