/*--------------------------------------------------------------------
 * FICHERO:       PackBits.h
 * OBJETIVO:      Definir los mtodos para descomprimir segn el
 *                algoritmo "PackBits"
 * IDENTIFICADOR: Pkb
 * AUTOR:         Pedro Reina
 * FECHA:         L.6.6.1994
 * FUNCIONES DISPONIBLES:
 *    Pkb_Expande()  Pkb_Comprime()
 *------------------------------------------------------------------*/

#ifndef _PACKBITS_
#define _PACKBITS_

/*--------------------------------------------------------------------
 * Ficheros de cabecera
 *------------------------------------------------------------------*/

#include "Olimpo.h"         /*  Necesita el tipo octeto  */

/*--------------------------------------------------------------------
 * Definicin de macros constantes
 *------------------------------------------------------------------*/

/*--------------------------------------------------------------------
 * Declaracin de funciones
 *------------------------------------------------------------------*/

entero Pkb_Expande();
entero Pkb_Comprime();

/*--------------------------------------------------------------------
 * Definicin de macros funciones
 *------------------------------------------------------------------*/

#endif /* _PACKBITS_ */
