Palacios Public Git Repository

To checkout Palacios execute

  git clone http://v3vee.org/palacios/palacios.web/palacios.git
This will give you the master branch. You probably want the devel branch or one of the release branches. To switch to the devel branch, simply execute
  cd palacios
  git checkout --track -b devel origin/devel
The other branches are similar.


Release 1.0
[palacios.git] / geekos / include / geekos / crc32.h
1 #ifndef GEEKOS_CRC32_H
2 #define GEEKOS_CRC32_H
3
4 #include <stddef.h>
5 #include <geekos/ktypes.h>
6
7 void Init_CRC32(void);
8 ulong_t crc32(ulong_t crc, char const *buf, size_t len);
9
10 #endif /* GEEKOS_CRC32_H */