summaryrefslogtreecommitdiff
path: root/ext/standard/php_mt_rand.h
diff options
context:
space:
mode:
authorLeigh <leigh@php.net>2016-07-05 11:16:37 +0100
committerLeigh <leigh@php.net>2016-07-05 11:16:37 +0100
commiteba6e7ce9ac721b072ee3afb1cae883b774f3714 (patch)
tree64d15dbc8a2cc837e2722b9ed3d36da2ce1dfc8a /ext/standard/php_mt_rand.h
parent421cc65510cead9c554f87e83edd0f903a733969 (diff)
downloadphp-git-eba6e7ce9ac721b072ee3afb1cae883b774f3714.tar.gz
Split rand and mt_rand into separate files
Diffstat (limited to 'ext/standard/php_mt_rand.h')
-rw-r--r--ext/standard/php_mt_rand.h34
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 */
+