source:
trunk/minix/lib/i86/string/strncmp.s@
10
Last change on this file since 10 was 9, checked in by , 14 years ago | |
---|---|
File size: 300 bytes |
Line | |
---|---|
1 | ! strncmp() Author: Kees J. Bot |
2 | ! 27 Jan 1994 |
3 | .sect .text; .sect .rom; .sect .data; .sect .bss |
4 | |
5 | ! int strncmp(const char *s1, const char *s2, size_t n) |
6 | ! Compare two strings. |
7 | ! |
8 | .sect .text |
9 | .define _strncmp |
10 | _strncmp: |
11 | mov bx, sp |
12 | mov cx, 6(bx) ! Maximum length |
13 | jmp __strncmp ! Common code |
Note:
See TracBrowser
for help on using the repository browser.