mirror of
https://github.com/SEPPDROID/Digital-Research-Source-Code.git
synced 2025-10-23 08:24:18 +00:00
7 lines
120 B
C
7 lines
120 B
C
_clenf (s) /* counts length of string */
|
|
register char *s;
|
|
{
|
|
register int n;
|
|
for (n=0; *s++ != '\0'; n++);
|
|
return (n);}
|