mirror of
https://github.com/SEPPDROID/Digital-Research-Source-Code.git
synced 2025-10-23 08:24:18 +00:00
13 lines
111 B
C
13 lines
111 B
C
__length(s)
|
|
char *s;
|
|
{
|
|
register int l;
|
|
register char *p;
|
|
|
|
p = s;
|
|
l = 0;
|
|
while (*p++)
|
|
l++;
|
|
return(l);
|
|
}
|