Staging
v0.5.1
https://github.com/python/cpython
Revision 3a844a2822295d0811e2d6f84f91464e35c70160 authored by Fred Drake on 06 October 2000, 21:00:40 UTC, committed by Fred Drake on 06 October 2000, 21:00:40 UTC
1 parent db810ac
Raw File
Tip revision: 3a844a2822295d0811e2d6f84f91464e35c70160 authored by Fred Drake on 06 October 2000, 21:00:40 UTC
Another name.
Tip revision: 3a844a2
ucnhash.h

#include "Python.h"
#include <stdlib.h>

/* --- C API ----------------------------------------------------*/
/* C API for usage by other Python modules */
typedef struct _Py_UCNHashAPI
{
    unsigned long cKeys;
    unsigned long cchMax;
    unsigned long (*hash)(const char *key, unsigned int cch);
    const void *(*getValue)(unsigned long iKey);
} _Py_UCNHashAPI;

typedef struct 
{
    const char *pszUCN;
    Py_UCS4 value;
} _Py_UnicodeCharacterName;

back to top