summaryrefslogtreecommitdiff
path: root/ext/standard/php_crypt.h
blob: 1b93431cb589d0f00f838fd69ce74b9061b80b86 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef PHP_CRYPT_H
#define PHP_CRYPT_H

#if HAVE_CRYPT
extern php3_module_entry crypt_module_entry;
#define crypt_module_ptr &crypt_module_entry
PHP_FUNCTION(crypt);
extern PHP_MINIT_FUNCTION(crypt);
#else
#define crypt_module_ptr NULL
#endif

#define phpext_crypt_ptr crypt_module_ptr

#endif