]> git.sur5r.net Git - cc65/blob - strcoll.s
9b2db28935815c120bf6a0464a09d8959e6d8bbf
[cc65] / strcoll.s
1 ;
2 ; Ullrich von Bassewitz, 11.12.1998
3 ;
4 ; int strcoll (const char* s1, const char* s2);
5 ;
6 ; Since we don't have locales, this function is equivalent to strcmp.
7 ;
8
9         .export         _strcoll
10         .import         _strcmp
11
12 _strcoll        = _strcmp
13