comment_uri($comment)Entity uri callback.
modules/comment/comment.module, line 152
<?php
function comment_uri($comment) {
return array(
'path' => 'comment/' . $comment->cid,
'options' => array('fragment' => 'comment-' . $comment->cid),
);
}
?>