]> git.sur5r.net Git - openldap/blobdiff - libraries/liblutil/base64.c
Add missing newline at EOF
[openldap] / libraries / liblutil / base64.c
index a2c27a1ff9d0ea15b0a9568f55bc09529181983c..0029dd16d4447296055fe6d659b9c23eec07880b 100644 (file)
 
 #include "portable.h"
 
-#include <stdlib.h>
-#include <stddef.h>
-#include <ctype.h>
-
+#include <ac/stdlib.h>
+#include <ac/ctype.h>
 #include <ac/string.h>
 
 /* include socket.h to get sys/types.h and/or winsock2.h */
@@ -127,7 +125,7 @@ static const char Pad64 = '=';
    */
 
 int
-b64_ntop(
+lutil_b64_ntop(
        u_char const *src,
        size_t srclength,
        char *target,
@@ -198,7 +196,7 @@ b64_ntop(
  */
 
 int
-b64_pton(
+lutil_b64_pton(
        char const *src,
        u_char *target, 
        size_t targsize)