bam_crc.h



/****************************************************************************/
/*     MODULE:	bam_crc.h                                                   */
/*   FUNCTION:	CRC check programming definitions and prototypes.           */
/*    HISTORY:	4-11-96 L.R. Erickson - Original		                    */
/****************************************************************************/

#ifndef INCL_BAM_CRC
#define INCL_BAM_CRC



/********************************************************/
/*  defines                                           */
/********************************************************/




/********************************************************
 typedefs
********************************************************/




/********************************************************/
/* Function prototypes                                  */
/********************************************************/

#ifdef SRC_BAM_CRC

void chk_crc(void) ;
void init_crc(void) ;
void crc_chk_err(void) ;

#pragma model(kc)

#define TRUE 1
#define FALSE 0

#else

extern void chk_crc(void) ;
extern void init_crc(void) ;

#endif

#endif