Files
Cnomicon/include/utillib.h
2021-01-22 10:16:20 -05:00

56 lines
1.9 KiB
C

/*****************************************************************************
* Copyright (C) 2008
* ProbeStar Telematics, LLC
* All Rights Reserved. Proprietary and Confidential.
*============================================================================
* Multiplatform Embedded Data Types and Conversion
* Checksum and CRC Routines
*****************************************************************************/
/* prevent multiple inclusions */
#ifndef _UTILLIB_H_
#define _UTILLIB_H_
/*****************************************************************************
* includes
*****************************************************************************/
#include <stdio.h>
#include <stdlib.h>
/*****************************************************************************
* defines
*****************************************************************************/
/*****************************************************************************
* macros
*****************************************************************************/
/*****************************************************************************
* structs & typedefs
*****************************************************************************/
/*****************************************************************************
* global constants
*****************************************************************************/
/*****************************************************************************
* global variables
*****************************************************************************/
/*****************************************************************************
* C function prototypes
*****************************************************************************/
/* export C functions to C++ */
#ifdef __cplusplus
extern "C" {
#endif
void hex_print(FILE *pHexFile, const u_char *packet, int length);
#ifdef __cplusplus
}
#endif
#endif