/* }}} */
-/* {{{ proto int set_socket_blocking(int socket_descriptor, int mode)
- Set blocking/non-blocking mode on a socket */
PHPAPI int php_set_sock_blocking(int socketd, int block)
{
int ret = SUCCESS;
return ret;
}
+/* {{{ proto bool socket_set_blocking(resource socket, int mode)
+ Set blocking/non-blocking mode on a socket */
PHP_FUNCTION(socket_set_blocking)
{
zval **arg1, **arg2;
}
/* }}} */
-/* {{{ proto int printf(string format, array args)
+/* {{{ proto int vprintf(string format, array args)
Output a formatted string */
PHP_FUNCTION(vprintf)
{