forked from KolibriOS/kolibrios
1402c59305
git-svn-id: svn://kolibrios.org@1408 a494cfbc-eb01-0410-851d-a64ba20cac60
16 lines
406 B
ArmAsm
16 lines
406 B
ArmAsm
# strcat() Author: Kees J. Bot
|
|
# 1 Jan 1994
|
|
# char *strcat(char *s1, const char *s2)
|
|
# Append string s2 to s1.
|
|
#
|
|
|
|
.intel_syntax
|
|
|
|
.global _strcat
|
|
|
|
.text
|
|
.align 16
|
|
_strcat:
|
|
mov edx, -1 # Unlimited length
|
|
jmp __strncat # Common code
|