php_ereg.h 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. /*
  2. +----------------------------------------------------------------------+
  3. | PHP Version 5 |
  4. +----------------------------------------------------------------------+
  5. | Copyright (c) 1997-2016 The PHP Group |
  6. +----------------------------------------------------------------------+
  7. | This source file is subject to version 3.01 of the PHP license, |
  8. | that is bundled with this package in the file LICENSE, and is |
  9. | available through the world-wide-web at the following url: |
  10. | http://www.php.net/license/3_01.txt |
  11. | If you did not receive a copy of the PHP license and are unable to |
  12. | obtain it through the world-wide-web, please send a note to |
  13. | license@php.net so we can mail you a copy immediately. |
  14. +----------------------------------------------------------------------+
  15. | Author: Rasmus Lerdorf <rasmus@lerdorf.on.ca> |
  16. +----------------------------------------------------------------------+
  17. */
  18. /* $Id$ */
  19. #ifndef EREG_H
  20. #define EREG_H
  21. #include "php_regex.h"
  22. extern zend_module_entry ereg_module_entry;
  23. #define phpext_ereg_ptr &ereg_module_entry
  24. #ifdef PHP_WIN32
  25. # define PHP_EREG_API __declspec(dllexport)
  26. #elif defined(__GNUC__) && __GNUC__ >= 4
  27. # define PHP_EREG_API __attribute__ ((visibility("default")))
  28. #else
  29. # define PHP_EREG_API
  30. #endif
  31. PHP_EREG_API char *php_ereg_replace(const char *pattern, const char *replace, const char *string, int icase, int extended TSRMLS_DC);
  32. PHP_FUNCTION(ereg);
  33. PHP_FUNCTION(eregi);
  34. PHP_FUNCTION(eregi_replace);
  35. PHP_FUNCTION(ereg_replace);
  36. PHP_FUNCTION(split);
  37. PHP_FUNCTION(spliti);
  38. PHP_EREG_API PHP_FUNCTION(sql_regcase);
  39. ZEND_BEGIN_MODULE_GLOBALS(ereg)
  40. HashTable ht_rc;
  41. unsigned int lru_counter;
  42. ZEND_END_MODULE_GLOBALS(ereg)
  43. /* Module functions */
  44. PHP_MINFO_FUNCTION(ereg);
  45. #ifdef ZTS
  46. #define EREG(v) TSRMG(ereg_globals_id, zend_ereg_globals *, v)
  47. #else
  48. #define EREG(v) (ereg_globals.v)
  49. #endif
  50. ZEND_EXTERN_MODULE_GLOBALS(ereg)
  51. #endif /* REG_H */