mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-11 04:08:09 +03:00
3f61f5eb54
* Use signed char instead of char in Matcher Remove unused char* utf8_t typedef * Use int8_t instead of signed char
10 lines
233 B
Cython
10 lines
233 B
Cython
from libc.stdint cimport uint16_t, uint32_t, uint64_t, uintptr_t, int32_t
|
|
from libc.stdint cimport uint8_t
|
|
|
|
|
|
ctypedef uint64_t hash_t
|
|
ctypedef uint64_t attr_t
|
|
ctypedef uint64_t flags_t
|
|
ctypedef uint16_t len_t
|
|
ctypedef uint16_t tag_t
|