mirror of
https://github.com/ddnet/ddnet.git
synced 2024-11-10 18:18:18 +00:00
12 lines
495 B
C
12 lines
495 B
C
/* copyright (c) 2007 magnus auvinen, see licence.txt for more info */
|
|
|
|
/* variable int packing */
|
|
unsigned char *vint_pack(unsigned char *dst, int i);
|
|
const unsigned char *vint_unpack(const unsigned char *src, int *inout);
|
|
long intpack_compress(const void *src, int size, void *dst);
|
|
long intpack_decompress(const void *src, int size, void *dst);
|
|
|
|
/* zerobit packing */
|
|
long zerobit_compress(const void *src, int size, void *dst);
|
|
long zerobit_decompress(const void *src, int size, void *dst);
|