New API call iso_crc32_gpt()

This commit is contained in:
2014-04-12 14:54:54 +02:00
parent a394f4dfd2
commit 6edc1ac057
4 changed files with 37 additions and 4 deletions

View File

@ -2019,7 +2019,7 @@ static void swap_uuid(void *u_pt)
/* CRC-32 as of GPT and Ethernet.
Parameters are deduced from a table driven implementation in isohybrid.c
*/
unsigned int iso_crc32_gpt(unsigned char *data, int count, int flag)
uint32_t iso_crc32_gpt(unsigned char *data, int count, int flag)
{
unsigned int acc, top, result = 0;
long int i;