summaryrefslogtreecommitdiff
path: root/ext/ctype/ctype.stub.php
blob: 8bbc744d5a167796b9b2854f702206b864e5995e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<?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 {}