summaryrefslogtreecommitdiff
path: root/ext/ncurses
diff options
context:
space:
mode:
authorHartmut Holzgraefe <hholzgra@php.net>2001-12-15 14:20:41 +0000
committerHartmut Holzgraefe <hholzgra@php.net>2001-12-15 14:20:41 +0000
commit57c7f0ab5c15d038483063a931541b8eb29fa570 (patch)
tree85b0b44cee4493161a6d0c22c00045dc353fdaff /ext/ncurses
parent1c23d93135c84b6258ed3f1c8038795823040ada (diff)
downloadphp-git-57c7f0ab5c15d038483063a931541b8eb29fa570.tar.gz
cleanup
Diffstat (limited to 'ext/ncurses')
-rw-r--r--ext/ncurses/ncurses.c24
-rw-r--r--ext/ncurses/ncurses_fe.c1
-rw-r--r--ext/ncurses/php_ncurses.h4
-rw-r--r--ext/ncurses/php_ncurses_fe.h1
4 files changed, 0 insertions, 30 deletions
diff --git a/ext/ncurses/ncurses.c b/ext/ncurses/ncurses.c
index 17bfce2c56..370c1b45bd 100644
--- a/ext/ncurses/ncurses.c
+++ b/ext/ncurses/ncurses.c
@@ -146,30 +146,6 @@ PHP_MINFO_FUNCTION(ncurses)
so that your module can be compiled into PHP, it exists only for testing
purposes. */
-/* Every user-visible function in PHP should document itself in the source */
-/* {{{ proto string confirm_ncurses_compiled(string arg)
- Return a string to confirm that the module is compiled in */
-PHP_FUNCTION(confirm_ncurses_compiled)
-{
- zval **arg;
- int len;
- char string[256];
-
- if (ZEND_NUM_ARGS() != 1 || zend_get_parameters_ex(1, &arg) == FAILURE) {
- WRONG_PARAM_COUNT;
- }
-
- convert_to_string_ex(arg);
-
- len = sprintf(string, "Congratulations! You have successfully modified ext/%.78s/config.m4. Module %.78s is now compiled into PHP.", "ncurses", Z_STRVAL_PP(arg));
- RETURN_STRINGL(string, len, 1);
-}
-/* }}} */
-/* The previous line is meant for vim and emacs, so it can correctly fold and
- unfold functions in source code. See the corresponding marks just before
- function definition, where the functions purpose is also documented. Please
- follow this convention for the convenience of others editing your code.
-*/
/*
diff --git a/ext/ncurses/ncurses_fe.c b/ext/ncurses/ncurses_fe.c
index 8942de23f8..aea1995785 100644
--- a/ext/ncurses/ncurses_fe.c
+++ b/ext/ncurses/ncurses_fe.c
@@ -30,7 +30,6 @@
* Every user visible function must have an entry in ncurses_functions[].
*/
function_entry ncurses_functions[] = {
- PHP_FE(confirm_ncurses_compiled, NULL) /* For testing, remove later. */
PHP_FE(ncurses_addch, NULL)
PHP_FE(ncurses_color_set, NULL)
PHP_FE(ncurses_delwin, NULL)
diff --git a/ext/ncurses/php_ncurses.h b/ext/ncurses/php_ncurses.h
index a08864a99c..95b80c336c 100644
--- a/ext/ncurses/php_ncurses.h
+++ b/ext/ncurses/php_ncurses.h
@@ -22,10 +22,6 @@
#include <curses.h>
-#define _STRING(x) ((*x)->value.str.val)
-#define _INT(x) ((*x)->value.lval)
-#define _HASH(x) ((*x)->value.ht)
-
extern int le_ncurses;
extern zend_module_entry ncurses_module_entry;
diff --git a/ext/ncurses/php_ncurses_fe.h b/ext/ncurses/php_ncurses_fe.h
index d5d3c0a85e..aa979c539c 100644
--- a/ext/ncurses/php_ncurses_fe.h
+++ b/ext/ncurses/php_ncurses_fe.h
@@ -20,7 +20,6 @@
#ifndef PHP_NCURSES_FE_H
#define PHP_NCURSES_FE_H
-PHP_FUNCTION(confirm_ncurses_compiled); /* For testing, remove later. */
PHP_FUNCTION(ncurses_addch);
PHP_FUNCTION(ncurses_color_set);
PHP_FUNCTION(ncurses_delwin);