/***************************************************************************** * 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 #include /***************************************************************************** * 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