/opt/cpanel/ea-php80/root/usr/include/php/ext/standard
NameSizeModeActions
base64.h36780644editdlrm
basic_functions.h51510644editdlrm
basic_functions_arginfo.h1267560644editdlrm
crc32.h46030644editdlrm
crc32_x86.h18610644editdlrm
credits.h15620644editdlrm
credits_ext.h53620644editdlrm
credits_sapi.h8350644editdlrm
crypt_blowfish.h7900644editdlrm
crypt_freesec.h6620644editdlrm
css.h10700644editdlrm
datetime.h11720644editdlrm
dir_arginfo.h7460644editdlrm
dl.h14970644editdlrm
dl_arginfo.h2690644editdlrm
exec.h13040644editdlrm
file.h40060644editdlrm
flock_compat.h21120644editdlrm
fsock.h12470644editdlrm
head.h15650644editdlrm
hrtime.h23620644editdlrm
html.h24050644editdlrm
html_tables.h4835970644editdlrm
info.h234930644editdlrm
md5.h19660644editdlrm
pack.h10730644editdlrm
pageinfo.h11800644editdlrm
php_array.h22990644editdlrm
php_assert.h12130644editdlrm
php_browscap.h11350644editdlrm
php_crypt.h14030644editdlrm
php_crypt_r.h16790644editdlrm
php_dir.h13130644editdlrm
php_dns.h26430644editdlrm
php_ext_syslog.h12770644editdlrm
php_filestat.h21610644editdlrm
php_fopen_wrappers.h18370644editdlrm
php_http.h14770644editdlrm
php_image.h21460644editdlrm
php_incomplete_class.h21980644editdlrm
php_lcg.h13430644editdlrm
php_mail.h22150644editdlrm
php_math.h36320644editdlrm
php_mt_rand.h18510644editdlrm
php_net.h11630644editdlrm
php_password.h28390644editdlrm
php_rand.h30670644editdlrm
php_random.h19160644editdlrm
php_smart_string.h11610644editdlrm
php_smart_string_public.h11680644editdlrm
php_standard.h19570644editdlrm
php_string.h40540644editdlrm
php_uuencode.h12050644editdlrm
php_var.h34900644editdlrm
php_versioning.h12110644editdlrm
proc_open.h17020644editdlrm
quot_print.h12550644editdlrm
scanf.h19970644editdlrm
sha1.h15700644editdlrm
streamsfuncs.h11370644editdlrm
url.h21400644editdlrm
url_scanner_ex.h23730644editdlrm
user_filters_arginfo.h9870644editdlrm
Edit: /opt/cpanel/ea-php80/root/usr/include/php/ext/standard/php_random.h (1916B)
/* +----------------------------------------------------------------------+ | Copyright (c) The PHP Group | +----------------------------------------------------------------------+ | This source file is subject to version 3.01 of the PHP license, | | that is bundled with this package in the file LICENSE, and is | | available through the world-wide-web at the following url: | | http://www.php.net/license/3_01.txt | | If you did not receive a copy of the PHP license and are unable to | | obtain it through the world-wide-web, please send a note to | | license@php.net so we can mail you a copy immediately. | +----------------------------------------------------------------------+ | Authors: Sammy Kaye Powers | +----------------------------------------------------------------------+ */ #ifndef PHP_RANDOM_H #define PHP_RANDOM_H BEGIN_EXTERN_C() PHP_MINIT_FUNCTION(random); PHP_MSHUTDOWN_FUNCTION(random); typedef struct { int fd; } php_random_globals; #define php_random_bytes_throw(b, s) php_random_bytes((b), (s), 1) #define php_random_bytes_silent(b, s) php_random_bytes((b), (s), 0) #define php_random_int_throw(min, max, result) \ php_random_int((min), (max), (result), 1) #define php_random_int_silent(min, max, result) \ php_random_int((min), (max), (result), 0) PHPAPI int php_random_bytes(void *bytes, size_t size, zend_bool should_throw); PHPAPI int php_random_int(zend_long min, zend_long max, zend_long *result, zend_bool should_throw); #ifdef ZTS # define RANDOM_G(v) ZEND_TSRMG(random_globals_id, php_random_globals *, v) extern PHPAPI int random_globals_id; #else # define RANDOM_G(v) random_globals.v extern PHPAPI php_random_globals random_globals; #endif END_EXTERN_C() #endif