summaryrefslogtreecommitdiff
path: root/main/php_content_types.c
diff options
context:
space:
mode:
authorMax Semenik <maxsem.wiki@gmail.com>2020-07-01 16:32:55 +0300
committerMáté Kocsis <kocsismate@woohoolabs.com>2020-07-06 21:13:34 +0200
commit2b5de6f839feea0ae1d5289d59dd7f159fcdcc8c (patch)
treef23a5c00a96f30a62ddcf626b4c6a6d53809d14f /main/php_content_types.c
parent47579986504022d3eab38e24fff5861d5e4eadad (diff)
downloadphp-git-2b5de6f839feea0ae1d5289d59dd7f159fcdcc8c.tar.gz
Remove proto comments from C files
Closes GH-5758
Diffstat (limited to 'main/php_content_types.c')
-rw-r--r--main/php_content_types.c12
1 files changed, 4 insertions, 8 deletions
diff --git a/main/php_content_types.c b/main/php_content_types.c
index d953afcec6..920fc95906 100644
--- a/main/php_content_types.c
+++ b/main/php_content_types.c
@@ -20,8 +20,7 @@
#include "php_content_types.h"
-/* {{{ php_post_entries[]
- */
+/* {{{ php_post_entries[] */
static const sapi_post_entry php_post_entries[] = {
{ DEFAULT_POST_CONTENT_TYPE, sizeof(DEFAULT_POST_CONTENT_TYPE)-1, sapi_read_standard_form_data, php_std_post_handler },
{ MULTIPART_CONTENT_TYPE, sizeof(MULTIPART_CONTENT_TYPE)-1, NULL, rfc1867_post_handler },
@@ -29,8 +28,7 @@ static const sapi_post_entry php_post_entries[] = {
};
/* }}} */
-/* {{{ SAPI_POST_READER_FUNC
- */
+/* {{{ SAPI_POST_READER_FUNC */
SAPI_API SAPI_POST_READER_FUNC(php_default_post_reader)
{
if (!strcmp(SG(request_info).request_method, "POST")) {
@@ -42,8 +40,7 @@ SAPI_API SAPI_POST_READER_FUNC(php_default_post_reader)
}
/* }}} */
-/* {{{ php_startup_sapi_content_types
- */
+/* {{{ php_startup_sapi_content_types */
int php_startup_sapi_content_types(void)
{
sapi_register_default_post_reader(php_default_post_reader);
@@ -53,8 +50,7 @@ int php_startup_sapi_content_types(void)
}
/* }}} */
-/* {{{ php_setup_sapi_content_types
- */
+/* {{{ php_setup_sapi_content_types */
int php_setup_sapi_content_types(void)
{
sapi_register_post_entries(php_post_entries);