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...
1
# strlen()    Author: Kees J. Bot  1 Jan 1994
1
/*	strlen()					Author: Kees J. Bot */
-
 
2
/*								1 Jan 1994 */
Line 2... Line 3...
2
 
3
 
3
# size_t strlen(const char *s)
4
/* size_t strlen(const char *s) */
-
 
5
/*	Return the length of a string. */
-
 
6
/* */
Line 4... Line -...
4
# Return the length of a string.
-
 
5
 
-
 
6
.intel_syntax
-
 
7
 
-
 
8
.globl _strlen
-
 
9
 
-
 
10
.text
-
 
11
 
7
#include "asm.h"
12
        .align  16
8
 
13
_strlen:
9
ENTRY(strlen)