File: pypy_ctype.h

package info (click to toggle)
python-unicodedata2 14.0.0%2Bds2-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 460 kB
  • sloc: ansic: 1,506; python: 1,179; makefile: 12
file content (11 lines) | stat: -rw-r--r-- 202 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
#ifndef __PYPY_SHIMS_H__
#define __PYPY_SHIMS_H__

#ifdef PYPY_VERSION

PyAPI_DATA(const unsigned char) _Py_ctype_toupper[256];
#define Py_TOUPPER(c) (_Py_ctype_toupper[Py_CHARMASK(c)])

#endif

#endif