summaryrefslogtreecommitdiff
path: root/ext/ctype/ctype.stub.php
blob: b5d42a97cbc11982ab1d0beefb843f93070a6196 (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
26
27
28
<?php

/**
 * @generate-function-entries
 * @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 {}