24 lines
1,012 B
C
24 lines
1,012 B
C
/*
|
|
+----------------------------------------------------------------------+
|
|
| Copyright © The PHP Group and Contributors. |
|
|
+----------------------------------------------------------------------+
|
|
| This source file is subject to the Modified BSD License that is |
|
|
| bundled with this package in the file LICENSE, and is available |
|
|
| through the World Wide Web at <https://www.php.net/license/>. |
|
|
| |
|
|
| SPDX-License-Identifier: BSD-3-Clause |
|
|
+----------------------------------------------------------------------+
|
|
| Authors: Sara Golemon <pollita@php.net> |
|
|
+----------------------------------------------------------------------+
|
|
*/
|
|
|
|
#ifndef PHP_NET_H
|
|
#define PHP_NET_H
|
|
|
|
#include "php.h"
|
|
#include "php_network.h"
|
|
|
|
PHPAPI zend_string* php_inet_ntop(const struct sockaddr *addr);
|
|
|
|
#endif /* PHP_NET_H */
|