diff options
author | chris <chris> | 2006-09-20 13:22:58 +0000 |
---|---|---|
committer | chris <chris> | 2006-09-20 13:22:58 +0000 |
commit | 7b2d611f0d0d11fa26b7cd7bf36812c28caad507 (patch) | |
tree | 4dd2a0f6ebc4a653169b097904b3294f46a83f84 | |
parent | 62a341620023d76d97609656404932055037b43b (diff) |
Oops.
-rw-r--r-- | tileserver/base64.h | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/tileserver/base64.h b/tileserver/base64.h index 13acd356c..3c61cabc3 100644 --- a/tileserver/base64.h +++ b/tileserver/base64.h @@ -5,16 +5,20 @@ * Copyright (c) 2006 UK Citizens Online Democracy. All rights reserved. * Email: chris@mysociety.org; WWW: http://www.mysociety.org/ * - * $Id: base64.h,v 1.1 2006-09-20 10:25:14 chris Exp $ + * $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 boolnopad); + const bool b64ish, const bool nopad); size_t base64_decode(const char *in, void *out, size_t *outlen, const bool b64ish); |