2000-05-28 13:40:48 +00:00
|
|
|
;
|
|
|
|
; Ullrich von Bassewitz, 11.12.1998
|
|
|
|
;
|
|
|
|
; int strcoll (const char* s1, const char* s2);
|
|
|
|
;
|
|
|
|
; Since we don't have locales, this function is equivalent to strcmp.
|
|
|
|
;
|
|
|
|
|
2013-05-09 13:56:54 +02:00
|
|
|
.export _strcoll
|
|
|
|
.import _strcmp
|
2000-05-28 13:40:48 +00:00
|
|
|
|
2013-05-09 13:56:54 +02:00
|
|
|
_strcoll = _strcmp
|
2000-05-28 13:40:48 +00:00
|
|
|
|