mirror of
https://gitlab.com/qemu-project/openbios.git
synced 2024-02-13 08:34:06 +08:00
8 lines
227 B
C
8 lines
227 B
C
|
|
#ifndef IPCHECKSUM_H
|
||
|
|
#define IPCHECKSUM_H
|
||
|
|
|
||
|
|
unsigned short ipchksum(const void *data, unsigned long length);
|
||
|
|
unsigned short add_ipchksums(unsigned long offset, unsigned short sum, unsigned short new);
|
||
|
|
|
||
|
|
#endif /* IPCHECKSUM_H */
|