:pserver:cvs@pserver.samba.org:/cvsroot - gnokii - Sun Nov 25 22:56 CET 2001
[gnokii.git] / include / data / rlp-crc24.h
1 /*
2
3   $Id$
4
5   G N O K I I
6
7   A Linux/Unix toolset and driver for Nokia mobile phones.
8
9   Copyright (C) 1999, 2000 Hugh Blemings & Pavel Janík ml.
10
11   Released under the terms of the GNU GPL, see file COPYING for more details.
12
13   This file:  rlp-crc24.h   Version 0.3.1
14
15   Header file for CRC24 (aka FCS) implementation in RLP.
16
17   $Log$
18   Revision 1.1.1.1  2001/11/25 21:59:21  short
19   :pserver:cvs@pserver.samba.org:/cvsroot - gnokii - Sun Nov 25 22:56 CET 2001
20
21   Revision 1.1  2001/02/21 19:57:11  chris
22   More fiddling with the directory layout
23
24
25 */
26
27 #ifndef __data_rlp_crc24_h
28 #define __data_rlp_crc24_h
29
30 #ifndef __misc_h
31   #include    "misc.h"
32 #endif
33
34 /* Prototypes for functions */
35
36 void RLP_CalculateCRC24Checksum(u8 *data, int length, u8 *crc);
37 bool RLP_CheckCRC24FCS(u8 *data, int length);
38
39 #endif