php-src/ext/standard/php_crypt.h
Sascha Schumann 5b983c944f Clean up php3.*\.h files. The files itself are renamed, and references in all
.*\.[ch] files were changed. There is a slight chance that my script missed
a few changes, please correct them manually.
1999-12-04 19:19:57 +00:00

16 lines
295 B
C

#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