changeset 1607:eee7dfe95a8f draft

Forgot to check in a header file for base64.
author Rob Landley <rob@landley.net>
date Sat, 13 Dec 2014 11:59:37 -0600
parents 26287486fddc
children e5d81c69729b
files lib/lib.h
diffstat 1 files changed, 2 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/lib/lib.h	Sat Dec 13 11:59:10 2014 -0600
+++ b/lib/lib.h	Sat Dec 13 11:59:37 2014 -0600
@@ -166,12 +166,14 @@
 void delete_tempfile(int fdin, int fdout, char **tempname);
 void replace_tempfile(int fdin, int fdout, char **tempname);
 void crc_init(unsigned int *crc_table, int little_endian);
+void base64_init(char *p);
 int terminal_size(unsigned *x, unsigned *y);
 int yesno(char *prompt, int def);
 int human_readable(char *buf, unsigned long long num);
 
 // net.c
 int xsocket(int domain, int type, int protocol);
+void xsetsockopt(int fd, int level, int opt, void *val, socklen_t len);
 
 // password.c
 int get_salt(char *salt, char * algo);