diff options
author | TingPing <tingping@tingping.se> | 2014-12-28 06:08:20 -0500 |
---|---|---|
committer | TingPing <tingping@tingping.se> | 2014-12-28 06:47:07 -0500 |
commit | 3f855f07f5d2e9a08a586436719358c40a46f29d (patch) | |
tree | 12ffd1b49265e33c10149632a4cd17afb7fe994a /plugins/fishlim/fish.h | |
parent | 83032b1aa3c3e5910c5cfd3e0ea1d25827f56475 (diff) |
Use glib for allocations in all plugins
Continuation of 83032b1aa
Diffstat (limited to 'plugins/fishlim/fish.h')
-rw-r--r-- | plugins/fishlim/fish.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/plugins/fishlim/fish.h b/plugins/fishlim/fish.h index db471326..d7415a5a 100644 --- a/plugins/fishlim/fish.h +++ b/plugins/fishlim/fish.h @@ -28,6 +28,8 @@ #include <stdbool.h> #include <stddef.h> +#include <glib.h> + char *fish_encrypt(const char *key, size_t keylen, const char *message); char *fish_decrypt(const char *key, size_t keylen, const char *data); char *fish_encrypt_for_nick(const char *nick, const char *data); |