12 lines
211 B
C
12 lines
211 B
C
|
/*
|
||
|
* PackBits.h
|
||
|
* Copyright 1999-2000 Y.Takagi. All Rights Reserved.
|
||
|
*/
|
||
|
|
||
|
#ifndef __PACKBITS_H
|
||
|
#define __PACKBITS_H
|
||
|
|
||
|
int pack_bits(unsigned char *out, unsigned char *in, int bytes);
|
||
|
|
||
|
#endif /* __PACKBITS_H */
|