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/netstring.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/netstring.h')
-rw-r--r-- | tileserver/netstring.h | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/tileserver/netstring.h b/tileserver/netstring.h deleted file mode 100644 index 83d5aabfc..000000000 --- a/tileserver/netstring.h +++ /dev/null @@ -1,22 +0,0 @@ -/* - * netstring.h: - * Write netstrings into strings. - * - * Copyright (c) 2006 UK Citizens Online Democracy. All rights reserved. - * Email: chris@mysociety.org; WWW: http://www.mysociety.org/ - * - * $Id: netstring.h,v 1.1 2006-09-20 10:25:14 chris Exp $ - * - */ - -#ifndef __NETSTRING_H_ /* include guard */ -#define __NETSTRING_H_ - -#include <sys/types.h> - -/* netstring.c */ -size_t netstring_write(char *out, const void *buf, const size_t len); -size_t netstring_write_string(char *out, const char *str); -size_t netstring_write_int(char *out, const int i); - -#endif /* __NETSTRING_H_ */ |