From 736ac2e53845222a795c0b86408577a0de9b409a Mon Sep 17 00:00:00 2001 From: powturbo Date: Tue, 6 Jan 2015 00:07:50 +0100 Subject: [PATCH] New functions + Integer Lists Intersection --- README.md | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/README.md b/README.md index f7dc935..775ba23 100644 --- a/README.md +++ b/README.md @@ -97,23 +97,23 @@ coming soon! ## Function usage: In general compression/decompression functions are of the form: - char *endptr = compress( unsigned *in, int n, char *out) - endptr : set by compress to the next character in "out" after the compressed buffer - in : input integer array - n : number of elements - out : pointer to output buffer + *char *endptr = compress( unsigned *in, int n, char *out)*
+ endptr : set by compress to the next character in "out" after the compressed buffer
+ in : input integer array
+ n : number of elements
+ out : pointer to output buffer
- char *endptr = decompress( char *in, int n, unsigned *out) - endptr : set by decompress to the next character in "in" after the decompressed buffer - in : pointer to input buffer - n : number of elements - out : output integer array + *char *endptr = decompress( char *in, int n, unsigned *out)*
+ endptr : set by decompress to the next character in "in" after the decompressed buffer
+ in : pointer to input buffer
+ n : number of elements
+ out : output integer array
-header files with documentation : - vint.h - variable byte - vsimple.h - variable simple - vp4dc.h,vp4dd.h - TurboPFor - bitpack.h,bitunpack.h - Bit Packing +header files with documentation :
+ vint.h - variable byte
+ vsimple.h - variable simple
+ vp4dc.h,vp4dd.h - TurboPFor
+ bitpack.h,bitunpack.h - Bit Packing
## Reference: