File: crc32.h

package info (click to toggle)
mtd-utils 1%3A2.3.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie, trixie-backports
  • size: 3,884 kB
  • sloc: ansic: 58,324; sh: 2,119; makefile: 71
file content (18 lines) | stat: -rw-r--r-- 400 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/*
 * This code was taken from the linux kernel. The license is GPL Version 2.
 */

#ifndef __CRC32_H__
#define __CRC32_H__

#include <stdint.h>

/* Return a 32-bit CRC of the contents of the buffer */
extern uint32_t mtd_crc32(uint32_t val, const void *ss, int len);

static inline uint32_t crc32(uint32_t val, const void *ss, int len)
{
	return mtd_crc32(val, ss, len);
}

#endif /* __CRC32_H__ */