blob: 939df8bf408b8bf262894f6e042b9493cb3fa56e (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#include <stdio.h>
#include <libs/encrypt.h>
void encrypt(char *message, encrypt_fn_t encrypt_fn) {
encrypt_fn(message);
}
void encrypt_arr(char *message, encrypt_arr_t fn_arr, int size)
{
printf("BROKEN LIB\n");
}
|