blob: c740dc55ec512351f12163aec01eaf2cadd22e74 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#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
extern void php3_crypt(INTERNAL_FUNCTION_PARAMETERS);
extern int php_minit_crypt(INIT_FUNC_ARGS);
#else
#define crypt_module_ptr NULL
#endif
#endif
|