Subversion Repositories Kolibri OS

Rev

Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed

  1. #       strcat()                                        Author: Kees J. Bot
  2. #                                                               1 Jan 1994
  3. # char *strcat(char *s1, const char *s2)
  4. #       Append string s2 to s1.
  5. #
  6.  
  7.         .intel_syntax
  8.  
  9. .global _strcat
  10.  
  11.         .text
  12.         .align  16
  13. _strcat:
  14.         mov     edx, -1         # Unlimited length
  15.         jmp     __strncat       # Common code
  16.