acc60ee067
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@11436 a95241bf-73f2-0310-859d-f6bbb57e9c96
13 lines
273 B
C
13 lines
273 B
C
/*
|
|
* PackBits.h
|
|
* Copyright 1999-2000 Y.Takagi. All Rights Reserved.
|
|
*/
|
|
|
|
#ifndef __PACKBITS_H
|
|
#define __PACKBITS_H
|
|
|
|
int pack_bits_size(const unsigned char *in, int bytes);
|
|
int pack_bits(unsigned char *out, const unsigned char *in, int bytes);
|
|
|
|
#endif /* __PACKBITS_H */
|