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