Subversion Repositories Kolibri OS

Rev

Blame | Last modification | View Log | Download | RSS feed

  1. /*      strncat()                                       Author: Kees J. Bot */
  2. /*                                                              1 Jan 1994 */
  3.  
  4. /* size_t strncat(char *s1, const char *s2, size_t n) */
  5. /*      Append string s2 to s1. */
  6. /* */
  7. #include "asm.h"
  8.  
  9. ENTRY(strncat)
  10.         movl    12(%esp), %edx  /* Maximum length */
  11.         jmp     _C_LABEL(_strncat) /* Common code */
  12.