diff options
| author | Carlos Maiolino <[email protected]> | 2025-09-06 09:26:21 +0200 |
|---|---|---|
| committer | Carlos Maiolino <[email protected]> | 2025-09-06 09:26:21 +0200 |
| commit | 973e27b243ea7f12b6743894465c67a4a6a87eb2 (patch) | |
| tree | 006a2d9fc8f86b4914499302325fbcaa3941e17c /C/HF/chap7/encrypt.h | |
| parent | 736967952470e740781c95cf5afb7e705ec59030 (diff) | |
Move some other code here
Signed-off-by: Carlos Maiolino <[email protected]>
Diffstat (limited to 'C/HF/chap7/encrypt.h')
| -rw-r--r-- | C/HF/chap7/encrypt.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/C/HF/chap7/encrypt.h b/C/HF/chap7/encrypt.h new file mode 100644 index 0000000..4e130e9 --- /dev/null +++ b/C/HF/chap7/encrypt.h @@ -0,0 +1,7 @@ +#ifndef ENCRYPT_H +#define ENCRYPT_H + +typedef void (*encrypt_fn_t)(char *message); +void encrypt(char *message, encrypt_fn_t); + +#endif /* ENCRYPT_H */ |
