adler: add iterator style argument wrapper
This commit is contained in:
parent
b442db41ec
commit
332264a5be
@ -14,7 +14,7 @@
|
|||||||
* You should have received a copy of the GNU General Public License
|
* You should have received a copy of the GNU General Public License
|
||||||
* along with libgim. If not, see <http://www.gnu.org/licenses/>.
|
* along with libgim. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*
|
*
|
||||||
* Copyright 2010 Danny Robson <danny@nerdcruft.net>
|
* Copyright 2010-2014 Danny Robson <danny@nerdcruft.net>
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "adler.hpp"
|
#include "adler.hpp"
|
||||||
@ -28,3 +28,10 @@ uint32_t
|
|||||||
adler32 (const void* restrict _data, size_t _size)
|
adler32 (const void* restrict _data, size_t _size)
|
||||||
{ return fletcher<32, MODULUS, 1, 0> (_data, _size); }
|
{ return fletcher<32, MODULUS, 1, 0> (_data, _size); }
|
||||||
|
|
||||||
|
|
||||||
|
//-----------------------------------------------------------------------------
|
||||||
|
uint32_t
|
||||||
|
adler32 (const uint8_t *first, const uint8_t *last)
|
||||||
|
{
|
||||||
|
return adler32 (first, last - first);
|
||||||
|
}
|
||||||
|
@ -14,7 +14,7 @@
|
|||||||
* You should have received a copy of the GNU General Public License
|
* You should have received a copy of the GNU General Public License
|
||||||
* along with libgim. If not, see <http://www.gnu.org/licenses/>.
|
* along with libgim. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*
|
*
|
||||||
* Copyright 2010 Danny Robson <danny@nerdcruft.net>
|
* Copyright 2010-2014 Danny Robson <danny@nerdcruft.net>
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef __UTIL_ADLER_HPP
|
#ifndef __UTIL_ADLER_HPP
|
||||||
@ -24,5 +24,6 @@
|
|||||||
#include <cstdlib>
|
#include <cstdlib>
|
||||||
|
|
||||||
extern uint32_t adler32(const void* restrict, size_t);
|
extern uint32_t adler32(const void* restrict, size_t);
|
||||||
|
extern uint32_t adler32 (const uint8_t *first, const uint8_t *last);
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
Reference in New Issue
Block a user