2004-01-27 21:22:16 +00:00
|
|
|
/*
|
|
|
|
* PackBits.h
|
|
|
|
* Copyright 1999-2000 Y.Takagi. All Rights Reserved.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __PACKBITS_H
|
|
|
|
#define __PACKBITS_H
|
|
|
|
|
2010-12-08 20:07:22 +00:00
|
|
|
int pack_bits_size(const unsigned char* source, int size);
|
|
|
|
int pack_bits(unsigned char* destination, const unsigned char* source,
|
|
|
|
int size);
|
2004-01-27 21:22:16 +00:00
|
|
|
|
|
|
|
#endif /* __PACKBITS_H */
|