mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00
25 lines
523 B
PHP
25 lines
523 B
PHP
<?php
|
|
|
|
/** @generate-class-entries */
|
|
|
|
function ctype_alnum(mixed $text): bool {}
|
|
|
|
function ctype_alpha(mixed $text): bool {}
|
|
|
|
function ctype_cntrl(mixed $text): bool {}
|
|
|
|
function ctype_digit(mixed $text): bool {}
|
|
|
|
function ctype_lower(mixed $text): bool {}
|
|
|
|
function ctype_graph(mixed $text): bool {}
|
|
|
|
function ctype_print(mixed $text): bool {}
|
|
|
|
function ctype_punct(mixed $text): bool {}
|
|
|
|
function ctype_space(mixed $text): bool {}
|
|
|
|
function ctype_upper(mixed $text): bool {}
|
|
|
|
function ctype_xdigit(mixed $text): bool {}
|