2001-01-19 05:45:02 -04:00
|
|
|
/* Unicode name database interface */
|
2020-10-26 12:43:47 -03:00
|
|
|
#ifndef Py_INTERNAL_UCNHASH_H
|
|
|
|
#define Py_INTERNAL_UCNHASH_H
|
2001-01-19 05:45:02 -04:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
2000-06-28 13:37:24 -03:00
|
|
|
|
2020-10-26 12:43:47 -03:00
|
|
|
#ifndef Py_BUILD_CORE
|
|
|
|
# error "this header requires Py_BUILD_CORE define"
|
|
|
|
#endif
|
|
|
|
|
2009-05-05 19:31:58 -03:00
|
|
|
/* revised ucnhash CAPI interface (exported through a "wrapper") */
|
|
|
|
|
|
|
|
#define PyUnicodeData_CAPSULE_NAME "unicodedata.ucnhash_CAPI"
|
2001-01-19 05:45:02 -04:00
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
|
2020-10-26 15:19:36 -03:00
|
|
|
/* Get name for a given character code.
|
|
|
|
Returns non-zero if success, zero if not.
|
|
|
|
Does not set Python exceptions. */
|
|
|
|
int (*getname)(Py_UCS4 code, char* buffer, int buflen,
|
2011-10-21 15:57:36 -03:00
|
|
|
int with_alias_and_seq);
|
2001-01-19 05:45:02 -04:00
|
|
|
|
2020-10-26 15:19:36 -03:00
|
|
|
/* Get character code for a given name.
|
|
|
|
Same error handling as for getname(). */
|
|
|
|
int (*getcode)(const char* name, int namelen, Py_UCS4* code,
|
2011-10-21 15:57:36 -03:00
|
|
|
int with_named_seq);
|
2001-01-19 05:45:02 -04:00
|
|
|
|
|
|
|
} _PyUnicode_Name_CAPI;
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
2020-10-26 12:43:47 -03:00
|
|
|
#endif /* !Py_INTERNAL_UCNHASH_H */
|