WordPress Version: 3.7
/**
* Displays the HTML content for reply to comment link.
*
* @since 2.7.0
*
* @param array $args Optional. Override default options, @see get_comment_reply_link()
* @param int $comment Optional. Comment being replied to. Default current comment.
* @param int|WP_Post $post Optional. Post ID or WP_Post object the comment is going to be displayed on. Default current post.
* @return mixed Link to show comment form, if successful. False, if comments are closed.
*/
function comment_reply_link($args = array(), $comment = null, $post = null)
{
echo get_comment_reply_link($args, $comment, $post);
}