source: trunk/minix/lib/i86/string/strcmp.s@ 9

Last change on this file since 9 was 9, checked in by Mattia Monga, 13 years ago

Minix 3.1.2a

File size: 275 bytes
Line 
1! strcmp() Author: Kees J. Bot
2! 27 Jan 1994
3.sect .text; .sect .rom; .sect .data; .sect .bss
4
5! int strcmp(const char *s1, const char *s2)
6! Compare two strings.
7!
8.sect .text
9.define _strcmp
10_strcmp:
11 mov cx, #-1 ! Unlimited length
12 jmp __strncmp ! Common code
Note: See TracBrowser for help on using the repository browser.