Subversion Repositories Kolibri OS

Rev

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

  1. # strlen()    Author: Kees J. Bot  1 Jan 1994
  2.  
  3. # size_t strlen(const char *s)
  4. # Return the length of a string.
  5.  
  6. .intel_syntax
  7.  
  8. .globl _strlen
  9.  
  10. .text
  11.  
  12.         .align  16
  13. _strlen:
  14.            mov     ecx, -1       # Unlimited length
  15.            jmp     __strnlen     # Common code
  16.