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 >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1986-11-20
|
283 b
|
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);
}