home *** CD-ROM | disk | FTP | other *** search
- ;******************************************************************************
- ; Filename: STRCAT.ASM
- ; Author: Peter Andersson
- ; Version: 0.0
- ; Created: 1995.03.12
- ; Updated: -
- ;******************************************************************************
- ; Copyright Peter Andersson, 1994-1995.
- ; All rights reserved.
- ;******************************************************************************
- ; Function: PSZ @strcat(PSZ destptr, PSZ srcptr)
- ; Comment: Concatenates two strings. The destination string must be able to
- ; contain the source string.
- ; Input: Eax - destination string pointer
- ; Edx - source string pointer
- ; Returns: destptr
- ;******************************************************************************
-
- Include STDDEF.INC
-
- Codeseg
-
- Proc strcat ,2
- Push Eax,Edx
- Call @strlen
- Add Eax,[Esp+4]
- Pop Edx
- Call @stpcpy
- Pop Eax
- Ret
- Endp
-
- End