14 lines
124 B
C
14 lines
124 B
C
|
|
#include "string.h"
|
|
|
|
int strlen(char *str)
|
|
{
|
|
int retn = 0;
|
|
while (*str++ != 0)
|
|
retn++;
|
|
return retn;
|
|
}
|
|
|
|
|
|
|