about summary refs log tree commit diff stats
path: root/src/otr.h
diff options
context:
space:
mode:
authorJames Booth <boothj5@gmail.com>2014-01-10 21:57:38 +0000
committerJames Booth <boothj5@gmail.com>2014-01-10 21:57:38 +0000
commitdf8c7dedc12b05d29d759e54637c0cbeb37f54fd (patch)
tree558510c6cd0d693dbbc8896cc2626c10803ce42b /src/otr.h
parente294a6db92b23956be777844d3796393147f5f30 (diff)
downloadprofani-tty-df8c7dedc12b05d29d759e54637c0cbeb37f54fd.tar.gz
Implemented message encryption, session started with whitspace tags on first message
Diffstat (limited to 'src/otr.h')
-rw-r--r--src/otr.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/otr.h b/src/otr.h
index cb964908..c96290c2 100644
--- a/src/otr.h
+++ b/src/otr.h
@@ -28,8 +28,10 @@
 void otr_init(void);
 void otr_account_load(ProfAccount *account);
 char * otr_get_fingerprint(void);
+
 char * otr_encrypt_message(const char * const to, const char * const message);
 char * otr_decrypt_message(const char * const from, const char * const message);
+
 void otr_free_message(char *message);
 
 #endif