1
0
mirror of https://github.com/php/php-src.git synced 2026-03-26 01:02:25 +01:00
Files
archived-php-src/ext/standard/php3_crypt.h
Sascha Schumann 39691bed9e conv_proto *.[ch]
1999-05-16 11:19:26 +00:00

16 lines
307 B
C

#ifndef PHP3_CRYPT_H
#define PHP3_CRYPT_H
#if HAVE_CRYPT
extern php3_module_entry crypt_module_entry;
#define crypt_module_ptr &crypt_module_entry
PHP_FUNCTION(crypt);
extern int php_minit_crypt(INIT_FUNC_ARGS);
#else
#define crypt_module_ptr NULL
#endif
#define phpext_crypt_ptr crypt_module_ptr
#endif