Subversion Repositories Kolibri OS

Rev

Rev 1408 | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1408 Rev 1627
Line 1... Line -...
1
#       strcat()                                        Author: Kees J. Bot
-
 
2
#                                                               1 Jan 1994
-
 
3
# char *strcat(char *s1, const char *s2)
1
/*	strcat()					Author: Kees J. Bot */
4
#       Append string s2 to s1.
2
/*								1 Jan 1994 */
5
#
-
 
Line -... Line 3...
-
 
3
 
6
 
4
/* char *strcat(char *s1, const char *s2) */
-
 
5
/*	Append string s2 to s1. */
-
 
6
/* */
Line 7... Line -...
7
        .intel_syntax
-
 
8
 
-
 
9
.global _strcat
-
 
10
 
-
 
11
        .text
7
#include "asm.h"
12
        .align  16
8
 
13
_strcat:
9
ENTRY(strcat)