diff options
author | francis <francis> | 2006-09-22 13:57:00 +0000 |
---|---|---|
committer | francis <francis> | 2006-09-22 13:57:00 +0000 |
commit | 648b23aa61f7523c4ad296303f9f70f8c1bb15bf (patch) | |
tree | 52af5553a05957795e04ae12ff6ac5901656960b /tileserver/base64.h | |
parent | b65558eac2e214c138c5887f0fd94249ec7f598c (diff) |
Create TilMa service (for mapping tiles).
Move map tile stuff to appropriate places:
- pnmtilesplit into its own project, as is standalone
- tileserver and maketiles into TilMa
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_ */ |