mirror of
https://github.com/python-pillow/Pillow.git
synced 2025-06-06 06:03:14 +03:00
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
This commit is contained in:
parent
f6eb2e7fa5
commit
a5a8ece5d2
|
@ -20,8 +20,12 @@ typedef uint32_t HashVal_t;
|
||||||
|
|
||||||
typedef uint32_t (*HashFunc)(const HashTable *, const HashKey_t);
|
typedef uint32_t (*HashFunc)(const HashTable *, const HashKey_t);
|
||||||
typedef int (*HashCmpFunc)(const HashTable *, const HashKey_t, const HashKey_t);
|
typedef int (*HashCmpFunc)(const HashTable *, const HashKey_t, const HashKey_t);
|
||||||
typedef void (*IteratorFunc)(const HashTable *, const HashKey_t, const HashVal_t, void *);
|
typedef void (*IteratorFunc)(
|
||||||
typedef void (*IteratorUpdateFunc)(const HashTable *, const HashKey_t, HashVal_t *, void *);
|
const HashTable *, const HashKey_t, const HashVal_t, void *
|
||||||
|
);
|
||||||
|
typedef void (*IteratorUpdateFunc)(
|
||||||
|
const HashTable *, const HashKey_t, HashVal_t *, void *
|
||||||
|
);
|
||||||
typedef void (*ComputeFunc)(const HashTable *, const HashKey_t, HashVal_t *);
|
typedef void (*ComputeFunc)(const HashTable *, const HashKey_t, HashVal_t *);
|
||||||
typedef void (*CollisionFunc)(
|
typedef void (*CollisionFunc)(
|
||||||
const HashTable *, HashKey_t *, HashVal_t *, HashKey_t, HashVal_t
|
const HashTable *, HashKey_t *, HashVal_t *, HashKey_t, HashVal_t
|
||||||
|
|
Loading…
Reference in New Issue
Block a user