function _lexicon_cmp_strcase in Lexicon 6
1 call to _lexicon_cmp_strcase()
File
- ./
lexicon.module, line 1288 - Lexicon is used to create lists of terms and definitions to use on a website and optionally mark them in the content with an indicator.
Code
function _lexicon_cmp_strcase($a, $b) {
return strcmp(drupal_strtolower($a), drupal_strtolower($b));
}