Skip to content

Commit feba3e4

Browse files
committed
ctype_* functions
1 parent 51f5cb6 commit feba3e4

File tree

2 files changed

+45
-12
lines changed

2 files changed

+45
-12
lines changed

ext/ctype/ctype.stub.php

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,24 +2,57 @@
22

33
/** @generate-class-entries */
44

5+
/**
6+
* @compile-time-eval
7+
*/
58
function ctype_alnum(mixed $text): bool {}
69

10+
/**
11+
* @compile-time-eval
12+
*/
713
function ctype_alpha(mixed $text): bool {}
814

15+
/**
16+
* @compile-time-eval
17+
*/
918
function ctype_cntrl(mixed $text): bool {}
1019

20+
/**
21+
* @compile-time-eval
22+
*/
1123
function ctype_digit(mixed $text): bool {}
1224

25+
/**
26+
* @compile-time-eval
27+
*/
1328
function ctype_lower(mixed $text): bool {}
1429

30+
/**
31+
* @compile-time-eval
32+
*/
1533
function ctype_graph(mixed $text): bool {}
1634

35+
/**
36+
* @compile-time-eval
37+
*/
1738
function ctype_print(mixed $text): bool {}
1839

40+
/**
41+
* @compile-time-eval
42+
*/
1943
function ctype_punct(mixed $text): bool {}
2044

45+
/**
46+
* @compile-time-eval
47+
*/
2148
function ctype_space(mixed $text): bool {}
2249

50+
/**
51+
* @compile-time-eval
52+
*/
2353
function ctype_upper(mixed $text): bool {}
2454

55+
/**
56+
* @compile-time-eval
57+
*/
2558
function ctype_xdigit(mixed $text): bool {}

ext/ctype/ctype_arginfo.h

Lines changed: 12 additions & 12 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)