File:  [MW Coherent from dump] / coherent / b / lib / libc / string / i8086 / strncmp.m
Revision 1.1.1.1 (vendor branch): download - view: text, annotated - select for diffs
Wed May 29 04:56:35 2019 UTC (7 years ago) by root
Branches: MarkWilliams, MAIN
CVS tags: relic, HEAD
coherent

//////////
/ i8086 C string library.
/ strncmp()
/ ANSI 4.11.4.4.
//////////

//////////
/ strncmp(String1, String2, Count)
/ char *String1, *String2;
/ int Count;
/
/ Compare up to Count bytes of String1 and String2.
//////////

#include <larges.h>

String1	=	LEFTARG
String2	=	String1+DPL
Count	=	String2+DPL

	Enter(strncmp_)
	mov	dx, $0		/ Result to DX
	mov	cx, Count(bp)	/ Count to CX
	or	cx, cx
	je	4f		/ Zero length, return equal
	Lds	si, String2(bp)	/ String2 address to DS:SI
	Les	di, String1(bp)	/ String1 address to ES:DI
	cld

1:	lodsb			/ String2 character to AL
	scasb			/ and compare to String1 character
	jne	2f		/ Mismatch
	orb	al, al
	loopne	1b		/ Continue if CX!=0 && AL!=0
	jmp	4f		/ Match, return 0

2:	ja	3f
	inc	dx		/ String1 > String2, return 1
	jmp	4f

3:	dec	dx		/ String1 < String2, return -1

4:	mov	ax, dx		/ Result to AX
	Leave

unix.superglobalmegacorp.com

This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.