diff options
author | Rasmus Lerdorf <rasmus@php.net> | 2001-06-05 13:12:10 +0000 |
---|---|---|
committer | Rasmus Lerdorf <rasmus@php.net> | 2001-06-05 13:12:10 +0000 |
commit | 25c3a3a39d7aebdce95825e6af2ad8c62905b7cc (patch) | |
tree | 4d8f1ff9644c880e3b7a63a361a0db2280d8058f /ext/standard/mail.c | |
parent | 4efe6f7e6b53496fb1c4f6990b3ad0771bd9be67 (diff) | |
download | php-git-25c3a3a39d7aebdce95825e6af2ad8c62905b7cc.tar.gz |
vim-6 does folding - clean up a bunch of missing folding tags plus
some misguided RINIT and RSHUTDOWN calls in a few fringe extensions
Diffstat (limited to 'ext/standard/mail.c')
-rw-r--r-- | ext/standard/mail.c | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/ext/standard/mail.c b/ext/standard/mail.c index dbac68ed45..3079659d34 100644 --- a/ext/standard/mail.c +++ b/ext/standard/mail.c @@ -70,6 +70,7 @@ PHP_FUNCTION(ezmlm_hash) RETURN_LONG((int) h); } +/* }}} */ /* {{{ proto int mail(string to, string subject, string message [, string additional_headers [, string additional_parameters]]) Send an email message */ @@ -129,6 +130,8 @@ PHP_FUNCTION(mail) } /* }}} */ +/* {{{ php_mail + */ int php_mail(char *to, char *subject, char *message, char *headers, char *extra_cmd) { #ifdef PHP_WIN32 @@ -186,7 +189,10 @@ int php_mail(char *to, char *subject, char *message, char *headers, char *extra_ #endif return 1; } +/* }}} */ +/* {{{ PHP_MINFO_FUNCTION + */ PHP_MINFO_FUNCTION(mail) { #ifdef PHP_WIN32 @@ -195,6 +201,7 @@ PHP_MINFO_FUNCTION(mail) php_info_print_table_row(2, "Path to sendmail", INI_STR("sendmail_path") ); #endif } +/* }}} */ #else @@ -203,9 +210,10 @@ PHP_MINFO_FUNCTION(mail) {} #endif - /* * Local variables: * tab-width: 4 + * c-basic-offset: 4 * End: + * vim: sw=4 ts=4 tw=78 fdm=marker */ |