Edit File by line
/home/barbar84/public_h.../wp-conte.../plugins/sujqvwi/ExeBy/smexe_ro.../usr/include/python3....
File: ucnhash.h
/* Unicode name database interface */
[0] Fix | Delete
#ifndef Py_LIMITED_API
[1] Fix | Delete
#ifndef Py_UCNHASH_H
[2] Fix | Delete
#define Py_UCNHASH_H
[3] Fix | Delete
#ifdef __cplusplus
[4] Fix | Delete
extern "C" {
[5] Fix | Delete
#endif
[6] Fix | Delete
[7] Fix | Delete
/* revised ucnhash CAPI interface (exported through a "wrapper") */
[8] Fix | Delete
[9] Fix | Delete
#define PyUnicodeData_CAPSULE_NAME "unicodedata.ucnhash_CAPI"
[10] Fix | Delete
[11] Fix | Delete
typedef struct {
[12] Fix | Delete
[13] Fix | Delete
/* Size of this struct */
[14] Fix | Delete
int size;
[15] Fix | Delete
[16] Fix | Delete
/* Get name for a given character code. Returns non-zero if
[17] Fix | Delete
success, zero if not. Does not set Python exceptions.
[18] Fix | Delete
If self is NULL, data come from the default version of the database.
[19] Fix | Delete
If it is not NULL, it should be a unicodedata.ucd_X_Y_Z object */
[20] Fix | Delete
int (*getname)(PyObject *self, Py_UCS4 code, char* buffer, int buflen,
[21] Fix | Delete
int with_alias_and_seq);
[22] Fix | Delete
[23] Fix | Delete
/* Get character code for a given name. Same error handling
[24] Fix | Delete
as for getname. */
[25] Fix | Delete
int (*getcode)(PyObject *self, const char* name, int namelen, Py_UCS4* code,
[26] Fix | Delete
int with_named_seq);
[27] Fix | Delete
[28] Fix | Delete
} _PyUnicode_Name_CAPI;
[29] Fix | Delete
[30] Fix | Delete
#ifdef __cplusplus
[31] Fix | Delete
}
[32] Fix | Delete
#endif
[33] Fix | Delete
#endif /* !Py_UCNHASH_H */
[34] Fix | Delete
#endif /* !Py_LIMITED_API */
[35] Fix | Delete
[36] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function