summaryrefslogtreecommitdiff
path: root/ext/unicode/php_transform.h
diff options
context:
space:
mode:
authorAndrei Zmievski <andrei@php.net>2006-06-13 23:46:04 +0000
committerAndrei Zmievski <andrei@php.net>2006-06-13 23:46:04 +0000
commita093762a6fd2fa1a4e0fe6754fa9432d8ed2cc16 (patch)
treeb2025ba23bb415ed493db9a94f704036221feab2 /ext/unicode/php_transform.h
parentb5f20ceb4843affaad918ab55e46c0a385d71c23 (diff)
downloadphp-git-a093762a6fd2fa1a4e0fe6754fa9432d8ed2cc16.tar.gz
transliterate()
Diffstat (limited to 'ext/unicode/php_transform.h')
-rw-r--r--ext/unicode/php_transform.h34
1 files changed, 34 insertions, 0 deletions
diff --git a/ext/unicode/php_transform.h b/ext/unicode/php_transform.h
new file mode 100644
index 0000000000..41118447d7
--- /dev/null
+++ b/ext/unicode/php_transform.h
@@ -0,0 +1,34 @@
+/*
+ +----------------------------------------------------------------------+
+ | PHP Version 6 |
+ +----------------------------------------------------------------------+
+ | This source file is subject to version 3.01 of the PHP license, |
+ | that is bundled with this package in the file LICENSE, and is |
+ | available through the world-wide-web at the following url: |
+ | http://www.php.net/license/3_01.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: Andrei Zmievski <andrei@php.net> |
+ +----------------------------------------------------------------------+
+*/
+
+/* $Id$ */
+
+#ifndef PHP_TRANSFORM_H
+#define PHP_TRANSFORM_H
+
+PHP_FUNCTION(transliterate);
+
+#endif /* PHP_TRANSFORM_H */
+
+
+/*
+ * Local variables:
+ * tab-width: 4
+ * c-basic-offset: 4
+ * End:
+ * vim600: noet sw=4 ts=4 fdm=marker
+ * vim<600: noet sw=4 ts=4
+ */