]> git.sur5r.net Git - cc65/blob - libsrc/common/strcoll.s
Merge remote-tracking branch 'irgendwer/AtariOS_Structure' into master
[cc65] / libsrc / common / 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