diff options
Diffstat (limited to 'ext/standard/php_mt_rand.h')
-rw-r--r-- | ext/standard/php_mt_rand.h | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/ext/standard/php_mt_rand.h b/ext/standard/php_mt_rand.h new file mode 100644 index 0000000000..84ef1915c6 --- /dev/null +++ b/ext/standard/php_mt_rand.h @@ -0,0 +1,34 @@ +/* + +----------------------------------------------------------------------+ + | PHP Version 7 | + +----------------------------------------------------------------------+ + | Copyright (c) 1997-2016 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: Rasmus Lerdorf <rasmus@php.net> | + | Zeev Suraski <zeev@zend.com> | + | Pedro Melo <melo@ip.pt> | + | Sterling Hughes <sterling@php.net> | + | | + | Based on code from: Shawn Cokus <Cokus@math.washington.edu> | + +----------------------------------------------------------------------+ + */ +/* $Id$ */ + +#ifndef PHP_MT_RAND_H +#define PHP_MT_RAND_H + +#define PHP_MT_RAND_MAX ((zend_long) (0x7FFFFFFF)) /* (1<<31) - 1 */ + +PHPAPI void php_mt_srand(uint32_t seed); +PHPAPI uint32_t php_mt_rand(void); + +#endif /* PHP_MT_RAND_H */ + |