HDLC-Daemon
FCS16.h
Go to the documentation of this file.
1 
37 #ifndef FCS16_H
38 #define FCS16_H
39 
40 #include <stdint.h>
41 #include <cstddef>
42 
43 #define PPPINITFCS16 0xffff
44 #define PPPGOODFCS16 0xf0b8
45 
46 uint16_t pppfcs16(uint16_t fcs, unsigned char* cp, size_t len);
47 
48 #endif // FCS16_H
uint16_t pppfcs16(uint16_t fcs, unsigned char *cp, size_t len)
Definition: FCS16.cpp:74