INTRODUCTION
Overview
Download and Install
Documentation
Publications

REPOSITORY
Libraries

DEVELOPER
Dev Guide
Dashboard

PEOPLE
Contributors
Users

SourceForge.net Logo
Project
Download
Mailing lists

 

         
crc32.h
1/*
2 * GearBox Project: Peer-Reviewed Open-Source Libraries for Robotics
3 * http://gearbox.sf.net/
4 * Copyright (c) 2004-2010 Michael Moser
5 *
6 * This distribution is licensed to you under the terms described in
7 * the LICENSE file included in this distribution.
8 *
9 */
10#include <cstddef> //for size_t
11#include <stdint.h> //for fixed size integer types
12
13namespace gbxnovatelutilacfr {
14//calculate and return a 32bit CRC for buf[bufLen]
15uint32_t crc(uint8_t *buf, size_t bufLen);
16}
 

Generated for GearBox by  doxygen 1.4.5