xref: /haiku/headers/libs/print/libprint/PackBits.h (revision 1e60bdeab63fa7a57bc9a55b032052e95a18bd2c)
1 /*
2  * PackBits.h
3  * Copyright 1999-2000 Y.Takagi. All Rights Reserved.
4  */
5 
6 #ifndef __PACKBITS_H
7 #define __PACKBITS_H
8 
9 int	pack_bits_size(const unsigned char* source, int size);
10 int	pack_bits(unsigned char* destination, const unsigned char* source,
11 	int size);
12 
13 #endif	/* __PACKBITS_H */
14