2004-01-28 00:22:16 +03:00
|
|
|
/*
|
|
|
|
* PackBits.h
|
|
|
|
* Copyright 1999-2000 Y.Takagi. All Rights Reserved.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __PACKBITS_H
|
|
|
|
#define __PACKBITS_H
|
|
|
|
|
2010-12-08 23:07:22 +03: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-28 00:22:16 +03:00
|
|
|
|
|
|
|
#endif /* __PACKBITS_H */
|