INTRODUCTION Overview Download and Install Documentation Publications REPOSITORY Libraries DEVELOPER Dev Guide Dashboard PEOPLE Contributors Users Project Download Mailing lists
|
crc32.h00001 /* 00002 * GearBox Project: Peer-Reviewed Open-Source Libraries for Robotics 00003 * http://gearbox.sf.net/ 00004 * Copyright (c) 2004-2010 Michael Moser 00005 * 00006 * This distribution is licensed to you under the terms described in 00007 * the LICENSE file included in this distribution. 00008 * 00009 */ 00010 #include <cstddef> //for size_t 00011 #include <stdint.h> //for fixed size integer types 00012 00013 namespace gbxnovatelutilacfr { 00014 //calculate and return a 32bit CRC for buf[bufLen] 00015 uint32_t crc(uint8_t *buf, size_t bufLen); 00016 } |