Subversion Repositories Kolibri OS

Rev

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

  1. # strncmp() Author: Kees J. Bot 1 Jan 1994
  2.  
  3. # int strncmp(const char *s1, const char *s2, size_t n)
  4. #     Compare two strings.
  5. #
  6.  
  7. .intel_syntax
  8.  
  9. .globl _strncmp
  10.  
  11. .text
  12.            .align  16
  13. _strncmp:
  14.            mov     ecx, [esp+12]    # Maximum length
  15.            jmp     __strncmp        # Common code
  16.