1 #ifndef MPLCHECKSUM_H 2 #define MPLCHECKSUM_H 3 4 #ifdef __cplusplus 5 extern "C" { 6 #endif 7 8 #include "mltypes.h" 9 #ifdef INV_INCLUDE_LEGACY_HEADERS 10 #include "checksum_legacy.h" 11 #endif 12 13 uint32_t inv_checksum(unsigned char *str, int len); 14 15 #ifdef __cplusplus 16 } 17 #endif 18 #endif /* MPLCHECKSUM_H */ 19