comment_load($cid)Load the entire comment by cid.
$cid The identifying comment id.
The comment object.
modules/comment/comment.module, line 1561
<?php
function comment_load($cid) {
$comment = comment_load_multiple(array($cid));
return $comment ? $comment[$cid] : FALSE;
}
?>