File: filecore.h

package info (click to toggle)
acorn-fdisk 3.0.6-13
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,068 kB
  • sloc: ansic: 5,422; makefile: 99
file content (18 lines) | stat: -rw-r--r-- 395 bytes parent folder | download | duplicates (10)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/*
 * lib/scheme/filecore.h
 *
 * Copyright (C) 1997,1998 Russell King
 */
#ifndef SCHEME_FILECORE_H
#define SCHEME_FILECORE_H

#include "util/types.h"

/* Function: u_int filecore_checksum (unsigned char *sector)
 * Purpose : Calculate a filecore checksum
 * Params  : sector - filecore sector to checksum
 * Returns : filecore checksum
 */
extern u_int filecore_checksum (u8 *sector);

#endif