Adjust 'after' so that it tries more rigorously to parse the input
[sgt/utils] / base64 / base64.c
index 52d8a12..0a17a16 100644 (file)
@@ -2,6 +2,7 @@
 #include <errno.h>
 #include <string.h>
 #include <stdlib.h>
+#include <ctype.h>
 
 #define isbase64(c) (    ((c) >= 'A' && (c) <= 'Z') || \
                          ((c) >= 'a' && (c) <= 'z') || \