/opt/cpanel/ea-php74/root/usr/include/php/ext/standard
NameSizeModeActions
base64.h38890644editdlrm
basic_functions.h78970644editdlrm
crc32.h47550644editdlrm
credits.h17140644editdlrm
credits_ext.h53720644editdlrm
credits_sapi.h8350644editdlrm
crypt_blowfish.h10370644editdlrm
crypt_freesec.h6620644editdlrm
css.h12220644editdlrm
cyr_convert.h12540644editdlrm
datetime.h13740644editdlrm
dl.h16310644editdlrm
exec.h17210644editdlrm
file.h47420644editdlrm
flock_compat.h21080644editdlrm
fsock.h14500644editdlrm
head.h18980644editdlrm
hrtime.h25370644editdlrm
html.h26860644editdlrm
html_tables.h4837490644editdlrm
info.h231420644editdlrm
md5.h21510644editdlrm
microtime.h13530644editdlrm
pack.h12670644editdlrm
pageinfo.h14570644editdlrm
php_array.h45180644editdlrm
php_assert.h14170644editdlrm
php_browscap.h13150644editdlrm
php_crypt.h15760644editdlrm
php_crypt_r.h20410644editdlrm
php_dir.h17020644editdlrm
php_dns.h30330644editdlrm
php_ext_syslog.h14990644editdlrm
php_filestat.h31700644editdlrm
php_fopen_wrappers.h19890644editdlrm
php_ftok.h12520644editdlrm
php_http.h16550644editdlrm
php_image.h24250644editdlrm
php_incomplete_class.h22960644editdlrm
php_iptc.h12610644editdlrm
php_lcg.h15200644editdlrm
php_link.h13590644editdlrm
php_mail.h24290644editdlrm
php_math.h47580644editdlrm
php_metaphone.h12300644editdlrm
php_mt_rand.h20030644editdlrm
php_net.h13500644editdlrm
php_password.h31480644editdlrm
php_rand.h32190644editdlrm
php_random.h21230644editdlrm
php_smart_string.h13130644editdlrm
php_smart_string_public.h13200644editdlrm
php_standard.h22920644editdlrm
php_string.h60840644editdlrm
php_type.h16570644editdlrm
php_uuencode.h14100644editdlrm
php_var.h36950644editdlrm
php_versioning.h13940644editdlrm
proc_open.h17770644editdlrm
quot_print.h14860644editdlrm
scanf.h22960644editdlrm
sha1.h17290644editdlrm
streamsfuncs.h27940644editdlrm
uniqid.h12610644editdlrm
url.h24510644editdlrm
url_scanner_ex.h24990644editdlrm
Edit: /opt/cpanel/ea-php74/root/usr/include/php/ext/standard/php_random.h (2123B)
/* +----------------------------------------------------------------------+ | PHP Version 7 | +----------------------------------------------------------------------+ | 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_FUNCTION(random_bytes); PHP_FUNCTION(random_int); 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