theme_get_styles()
drupal/includes/theme.inc, line 332
Return the HTML for a theme's stylesheets.
function theme_get_styles() {
$output = '';
foreach (theme_add_style() as $style) {
$output .= theme('stylesheet_import', $style);
}
return $output;
}