Load one breakpoint by its identifier.
@todo Remove this in a follow-up issue.
int $id: The id of the breakpoint to load.
Drupal\breakpoint\Plugin\Core\Entity\Breakpoint The entity object, or FALSE if there is no entity with the given id.
http://drupal.org/node/1798214
function breakpoint_load($id) {
return entity_load('breakpoint', $id);
}