home *** CD-ROM | disk | FTP | other *** search
- include compiler.inc
- ttl STRLEN, 1.03, 08-03-86 clr
-
- ;string function - computes length of string
-
- dseg
-
- cseg
-
- procdef strlen, <<dest, ptr>>
- pushreg
-
- ldptr di,dest
- xor al,al
- mov bx,di
- mov cx,7fffh
- cld
- repnz scasb
- dec di
- mov ax,di
- sub ax,bx
-
- pret
- pend strlen
-
- finish
-