File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -27,14 +27,14 @@ cdef extern from "../algorithms/xxhash-libselect.h":
27
27
XXH_OK,
28
28
XXH_ERROR
29
29
30
- XXH64_hash_t XXH64(const void * input , size_t length, unsigned long long seed);
30
+ XXH64_hash_t XXH64(const void * input , size_t length, unsigned long long seed)
31
31
32
- XXH_errorcode XXH64_reset(XXH64_state_t* statePtr, unsigned long long seed);
33
- XXH_errorcode XXH64_update(XXH64_state_t* statePtr, const void * input , size_t length);
34
- XXH64_hash_t XXH64_digest(const XXH64_state_t* statePtr);
32
+ XXH_errorcode XXH64_reset(XXH64_state_t* statePtr, unsigned long long seed)
33
+ XXH_errorcode XXH64_update(XXH64_state_t* statePtr, const void * input , size_t length)
34
+ XXH64_hash_t XXH64_digest(const XXH64_state_t* statePtr)
35
35
36
- void XXH64_canonicalFromHash(XXH64_canonical_t* dst, XXH64_hash_t hash );
37
- XXH64_hash_t XXH64_hashFromCanonical(const XXH64_canonical_t* src);
36
+ void XXH64_canonicalFromHash(XXH64_canonical_t* dst, XXH64_hash_t hash )
37
+ XXH64_hash_t XXH64_hashFromCanonical(const XXH64_canonical_t* src)
38
38
39
39
40
40
cdef Py_buffer ro_buffer(object data) except * :
You can’t perform that action at this time.
0 commit comments