drupal_add_link($attributes)
drupal-cvs/includes/common.inc, line 1889
Add a <link> tag to the page's HEAD.
This function can be called as long the HTML header hasn't been sent.
<?php
function drupal_add_link($attributes) {
drupal_set_html_head('<link' . drupal_attributes($attributes) . " />\n");
}
?>