|
@@ -1,6 +1,6 @@
|
|
|
/* StarPU --- Runtime system for heterogeneous multicore architectures.
|
|
|
*
|
|
|
- * Copyright (C) 2009-2012 Université de Bordeaux 1
|
|
|
+ * Copyright (C) 2009-2013 Université de Bordeaux 1
|
|
|
* Copyright (C) 2010, 2012 Centre National de la Recherche Scientifique
|
|
|
*
|
|
|
* StarPU is free software; you can redistribute it and/or modify
|
|
@@ -29,7 +29,7 @@ extern "C"
|
|
|
/* Compute the CRC of a byte buffer seeded by the inputcrc "current state".
|
|
|
* The return value should be considered as the new "current state" for future
|
|
|
* CRC computation. */
|
|
|
-uint32_t starpu_hash_crc32c_be_n(void *input, size_t n, uint32_t inputcrc);
|
|
|
+uint32_t starpu_hash_crc32c_be_n(const void *input, size_t n, uint32_t inputcrc);
|
|
|
|
|
|
/* Compute the CRC of a 32bit number seeded by the inputcrc "current state".
|
|
|
* The return value should be considered as the new "current state" for future
|
|
@@ -39,7 +39,7 @@ uint32_t starpu_hash_crc32c_be(uint32_t input, uint32_t inputcrc);
|
|
|
/* Compute the CRC of a string seeded by the inputcrc "current state". The
|
|
|
* return value should be considered as the new "current state" for future CRC
|
|
|
* computation. */
|
|
|
-uint32_t starpu_hash_crc32c_string(char *str, uint32_t inputcrc);
|
|
|
+uint32_t starpu_hash_crc32c_string(const char *str, uint32_t inputcrc);
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
}
|