File: pypy_ctype.h

package info (click to toggle)
python-unicodedata2 18.0.0%2Bds-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 496 kB
  • sloc: ansic: 1,523; python: 1,238; makefile: 14
file content (11 lines) | stat: -rw-r--r-- 202 bytes parent folder | download | duplicates (4)
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