removed "register const" from scalar arguments to the unicode

predicates
This commit is contained in:
Fredrik Lundh 2001-06-27 22:08:26 +00:00
parent bc7c8960e0
commit 72b068566a
2 changed files with 35 additions and 35 deletions

View file

@ -864,63 +864,63 @@ extern DL_IMPORT(int) PyUnicode_Contains(
*/
extern DL_IMPORT(int) _PyUnicode_IsLowercase(
register const Py_UNICODE ch /* Unicode character */
Py_UNICODE ch /* Unicode character */
);
extern DL_IMPORT(int) _PyUnicode_IsUppercase(
register const Py_UNICODE ch /* Unicode character */
Py_UNICODE ch /* Unicode character */
);
extern DL_IMPORT(int) _PyUnicode_IsTitlecase(
register const Py_UNICODE ch /* Unicode character */
Py_UNICODE ch /* Unicode character */
);
extern DL_IMPORT(int) _PyUnicode_IsWhitespace(
register const Py_UNICODE ch /* Unicode character */
Py_UNICODE ch /* Unicode character */
);
extern DL_IMPORT(int) _PyUnicode_IsLinebreak(
register const Py_UNICODE ch /* Unicode character */
Py_UNICODE ch /* Unicode character */
);
extern DL_IMPORT(Py_UNICODE) _PyUnicode_ToLowercase(
register const Py_UNICODE ch /* Unicode character */
Py_UNICODE ch /* Unicode character */
);
extern DL_IMPORT(Py_UNICODE) _PyUnicode_ToUppercase(
register const Py_UNICODE ch /* Unicode character */
Py_UNICODE ch /* Unicode character */
);
extern DL_IMPORT(Py_UNICODE) _PyUnicode_ToTitlecase(
register const Py_UNICODE ch /* Unicode character */
Py_UNICODE ch /* Unicode character */
);
extern DL_IMPORT(int) _PyUnicode_ToDecimalDigit(
register const Py_UNICODE ch /* Unicode character */
Py_UNICODE ch /* Unicode character */
);
extern DL_IMPORT(int) _PyUnicode_ToDigit(
register const Py_UNICODE ch /* Unicode character */
Py_UNICODE ch /* Unicode character */
);
extern DL_IMPORT(double) _PyUnicode_ToNumeric(
register const Py_UNICODE ch /* Unicode character */
Py_UNICODE ch /* Unicode character */
);
extern DL_IMPORT(int) _PyUnicode_IsDecimalDigit(
register const Py_UNICODE ch /* Unicode character */
Py_UNICODE ch /* Unicode character */
);
extern DL_IMPORT(int) _PyUnicode_IsDigit(
register const Py_UNICODE ch /* Unicode character */
Py_UNICODE ch /* Unicode character */
);
extern DL_IMPORT(int) _PyUnicode_IsNumeric(
register const Py_UNICODE ch /* Unicode character */
Py_UNICODE ch /* Unicode character */
);
extern DL_IMPORT(int) _PyUnicode_IsAlpha(
register const Py_UNICODE ch /* Unicode character */
Py_UNICODE ch /* Unicode character */
);
#ifdef __cplusplus