To change breadcrumb in module you can use two functions. You can change breadcrumbs separators or the whole logic using theme_breadcrumb in your templates template.php file.
Source code viewer
// Set the breadcrumb trail for the current page.
drupal_set_breadcrumb($breadcrumb = NULL);
// Get the breadcrumb trail for the current page.
$breadcrumb = drupal_get_breadcrumb();Programming Language: PHP