2004-01-28 00:22:16 +03:00
|
|
|
/*
|
|
|
|
* PackBits.h
|
|
|
|
* Copyright 1999-2000 Y.Takagi. All Rights Reserved.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __PACKBITS_H
|
|
|
|
#define __PACKBITS_H
|
|
|
|
|
2005-02-21 20:30:21 +03:00
|
|
|
int pack_bits_size(const unsigned char *in, int bytes);
|
|
|
|
int pack_bits(unsigned char *out, const unsigned char *in, int bytes);
|
2004-01-28 00:22:16 +03:00
|
|
|
|
|
|
|
#endif /* __PACKBITS_H */
|