Loads the entire comment by comment ID.
int $cid: The ID of the comment to be loaded.
bool $reset: Whether to reset the internal static entity cache. Note that the static cache is disabled in comment_entity_info() by default.
The comment object.
function comment_load($cid, $reset = FALSE) {
return entity_load('comment', $cid);
}