1/*
2 +----------------------------------------------------------------------+
3 | PHP Version 5 |
4 +----------------------------------------------------------------------+
5 | Copyright (c) 1997-2015 The PHP Group |
6 +----------------------------------------------------------------------+
7 | This source file is subject to version 3.01 of the PHP license, |
8 | that is bundled with this package in the file LICENSE, and is |
9 | available through the world-wide-web at the following url: |
10 | http://www.php.net/license/3_01.txt |
11 | If you did not receive a copy of the PHP license and are unable to |
12 | obtain it through the world-wide-web, please send a note to |
13 | license@php.net so we can mail you a copy immediately. |
14 +----------------------------------------------------------------------+
15 | Author: |
16 +----------------------------------------------------------------------+
17*/
18
19/* $Id$ */
20
21#include "basic_functions.h"
22#include "php_math.h"
23#include "php_string.h"
24#include "base64.h"
25#include "php_dir.h"
26#include "php_dns.h"
27#include "php_mail.h"
28#include "md5.h"
29#include "sha1.h"
30#include "html.h"
31#include "exec.h"
32#include "file.h"
33#include "php_ext_syslog.h"
34#include "php_filestat.h"
35#include "php_browscap.h"
36#include "pack.h"
37#include "datetime.h"
38#include "microtime.h"
39#include "url.h"
40#include "pageinfo.h"
41#include "cyr_convert.h"
42#include "php_link.h"
43#include "fsock.h"
44#include "php_image.h"
45#include "php_iptc.h"
46#include "info.h"
47#include "uniqid.h"
48#include "php_var.h"
49#include "quot_print.h"
50#include "dl.h"
51#include "php_crypt.h"
52#include "head.h"
53#include "php_lcg.h"
54#include "php_metaphone.h"
55#include "php_output.h"
56#include "php_array.h"
57#include "php_assert.h"
58#include "php_versioning.h"
59#include "php_ftok.h"
60#include "php_type.h"
61#include "php_password.h"
62
63#define phpext_standard_ptr basic_functions_module_ptr
64PHP_MINIT_FUNCTION(standard_filters);
65PHP_MSHUTDOWN_FUNCTION(standard_filters);
66
67
68/*
69 * Local variables:
70 * tab-width: 4
71 * c-basic-offset: 4
72 * End:
73 */
74