diff options
Diffstat (limited to 'tileserver/base64.h')
-rw-r--r-- | tileserver/base64.h | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/tileserver/base64.h b/tileserver/base64.h deleted file mode 100644 index 3c61cabc3..000000000 --- a/tileserver/base64.h +++ /dev/null @@ -1,25 +0,0 @@ -/* - * base64.h: - * Base64 and "base64ish" encoding and decoding. - * - * Copyright (c) 2006 UK Citizens Online Democracy. All rights reserved. - * Email: chris@mysociety.org; WWW: http://www.mysociety.org/ - * - * $Id: base64.h,v 1.2 2006-09-20 13:22:58 chris Exp $ - * - */ - -#ifndef __BASE64_H_ /* include guard */ -#define __BASE64_H_ - -#include <sys/types.h> - -#include <stdbool.h> - -/* base64.c */ -char *base64_encode(const void *in, const size_t inlen, char *out, - const bool b64ish, const bool nopad); -size_t base64_decode(const char *in, void *out, size_t *outlen, - const bool b64ish); - -#endif /* __BASE64_H_ */ |