php-src/ext/ctype/php_ctype.h

95 lines
2.8 KiB
C

/*
+----------------------------------------------------------------------+
| PHP version 4.0 |
+----------------------------------------------------------------------+
| Copyright (c) 1997, 1998, 1999, 2000 The PHP Group |
+----------------------------------------------------------------------+
| This source file is subject to version 2.02 of the PHP license, |
| that is bundled with this package in the file LICENSE, and is |
| available at through the world-wide-web at |
| http://www.php.net/license/2_02.txt. |
| If you did not receive a copy of the PHP license and are unable to |
| obtain it through the world-wide-web, please send a note to |
| license@php.net so we can mail you a copy immediately. |
+----------------------------------------------------------------------+
| Authors: |
| |
+----------------------------------------------------------------------+
*/
#ifndef PHP_CTYPE_H
#define PHP_CTYPE_H
/* You should tweak config.m4 so this symbol (or some else suitable)
gets defined.
*/
#if HAVE_CTYPE
extern zend_module_entry ctype_module_entry;
#define phpext_ctype_ptr &ctype_module_entry
#ifdef PHP_WIN32
#define PHP_CTYPE_API __declspec(dllexport)
#else
#define PHP_CTYPE_API
#endif
PHP_MINIT_FUNCTION(ctype);
PHP_MSHUTDOWN_FUNCTION(ctype);
PHP_RINIT_FUNCTION(ctype);
PHP_RSHUTDOWN_FUNCTION(ctype);
PHP_MINFO_FUNCTION(ctype);
PHP_FUNCTION(confirm_ctype_compiled); /* For testing, remove later. */
PHP_FUNCTION(isalnum);
PHP_FUNCTION(isalpha);
PHP_FUNCTION(iscntrl);
PHP_FUNCTION(isdigit);
PHP_FUNCTION(islower);
PHP_FUNCTION(isgraph);
PHP_FUNCTION(isprint);
PHP_FUNCTION(ispunct);
PHP_FUNCTION(isspace);
PHP_FUNCTION(isupper);
PHP_FUNCTION(isxdigit);
/*
Declare any global variables you may need between the BEGIN
and END macros here:
ZEND_BEGIN_MODULE_GLOBALS(ctype)
int global_variable;
ZEND_END_MODULE_GLOBALS(ctype)
*/
/* In every function that needs to use variables in php_ctype_globals,
do call CTYPELS_FETCH(); after declaring other variables used by
that function, and always refer to them as CTYPEG(variable).
You are encouraged to rename these macros something shorter, see
examples in any other php module directory.
*/
#ifdef ZTS
#define CTYPEG(v) (ctype_globals->v)
#define CTYPELS_FETCH() php_ctype_globals *ctype_globals = ts_resource(ctype_globals_id)
#else
#define CTYPEG(v) (ctype_globals.v)
#define CTYPELS_FETCH()
#endif
#else
#define phpext_ctype_ptr NULL
#endif
#endif /* PHP_CTYPE_H */
/*
* Local variables:
* tab-width: 4
* c-basic-offset: 4
* End:
*/