home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Club Amiga de Montreal - CAM
/
CAM_CD_1.iso
/
files
/
109.lha
/
PD_C
/
lib
/
strlen.c
< prev
next >
Wrap
Text File
|
1986-11-20
|
283b
|
17 lines
/*
* strlen - length of string (not including NUL)
*/
SIZET
strlen(s)
CONST char *s;
{
register CONST char *scan;
register SIZET count;
count = 0;
scan = s;
while (*scan++ != '\0')
count++;
return(count);
}