Support username and password authentication when talking to HTTP
[u/mdw/putty] / misc.h
diff --git a/misc.h b/misc.h
index 9ba5a18..3a90889 100644 (file)
--- a/misc.h
+++ b/misc.h
@@ -3,9 +3,18 @@
 
 #include "puttymem.h"
 
+#ifndef FALSE
+#define FALSE 0
+#endif
+#ifndef TRUE
+#define TRUE 1
+#endif
+
 char *dupstr(char *s);
 char *dupcat(char *s1, ...);
 
+void base64_encode_atom(unsigned char *data, int n, char *out);
+
 struct bufchain_granule;
 typedef struct bufchain_tag {
     struct bufchain_granule *head, *tail;