diff options
author | Nuno Lopes <nlopess@php.net> | 2006-08-14 14:53:23 +0000 |
---|---|---|
committer | Nuno Lopes <nlopess@php.net> | 2006-08-14 14:53:23 +0000 |
commit | 615a15d5fa22b467af045702e19cfa9870a2e160 (patch) | |
tree | 03346f1dfa1ae05aa3b2b1be6e818b95f327db48 /ext/pspell/php_pspell.h | |
parent | c62d5fd1151a32fdb8cc6ae5fb66d83b10474977 (diff) | |
download | php-git-615a15d5fa22b467af045702e19cfa9870a2e160.tar.gz |
a few more static keywording
Diffstat (limited to 'ext/pspell/php_pspell.h')
-rw-r--r-- | ext/pspell/php_pspell.h | 42 |
1 files changed, 21 insertions, 21 deletions
diff --git a/ext/pspell/php_pspell.h b/ext/pspell/php_pspell.h index 772d569ed6..5fb8447bbe 100644 --- a/ext/pspell/php_pspell.h +++ b/ext/pspell/php_pspell.h @@ -24,27 +24,27 @@ extern zend_module_entry pspell_module_entry; #define pspell_module_ptr &pspell_module_entry -PHP_MINIT_FUNCTION(pspell); -PHP_MINFO_FUNCTION(pspell); -PHP_FUNCTION(pspell_new); -PHP_FUNCTION(pspell_new_personal); -PHP_FUNCTION(pspell_new_config); -PHP_FUNCTION(pspell_check); -PHP_FUNCTION(pspell_suggest); -PHP_FUNCTION(pspell_store_replacement); -PHP_FUNCTION(pspell_add_to_personal); -PHP_FUNCTION(pspell_add_to_session); -PHP_FUNCTION(pspell_clear_session); -PHP_FUNCTION(pspell_save_wordlist); -PHP_FUNCTION(pspell_config_create); -PHP_FUNCTION(pspell_config_runtogether); -PHP_FUNCTION(pspell_config_mode); -PHP_FUNCTION(pspell_config_ignore); -PHP_FUNCTION(pspell_config_personal); -PHP_FUNCTION(pspell_config_dict_dir); -PHP_FUNCTION(pspell_config_data_dir); -PHP_FUNCTION(pspell_config_repl); -PHP_FUNCTION(pspell_config_save_repl); +static PHP_MINIT_FUNCTION(pspell); +static PHP_MINFO_FUNCTION(pspell); +static PHP_FUNCTION(pspell_new); +static PHP_FUNCTION(pspell_new_personal); +static PHP_FUNCTION(pspell_new_config); +static PHP_FUNCTION(pspell_check); +static PHP_FUNCTION(pspell_suggest); +static PHP_FUNCTION(pspell_store_replacement); +static PHP_FUNCTION(pspell_add_to_personal); +static PHP_FUNCTION(pspell_add_to_session); +static PHP_FUNCTION(pspell_clear_session); +static PHP_FUNCTION(pspell_save_wordlist); +static PHP_FUNCTION(pspell_config_create); +static PHP_FUNCTION(pspell_config_runtogether); +static PHP_FUNCTION(pspell_config_mode); +static PHP_FUNCTION(pspell_config_ignore); +static PHP_FUNCTION(pspell_config_personal); +static PHP_FUNCTION(pspell_config_dict_dir); +static PHP_FUNCTION(pspell_config_data_dir); +static PHP_FUNCTION(pspell_config_repl); +static PHP_FUNCTION(pspell_config_save_repl); #else #define pspell_module_ptr NULL #endif |