Select Git revision
aufgabe-1.c
Forked from
Peter Gerwinski / hp
361 commits behind the upstream repository.
Peter Gerwinski authored
aufgabe-1.c 151 B
int fun_1 (char *s1, char *s2)
{
int result = 1;
for (int i = 0; s1[i] && s2[i]; i++)
if (s1[i] != s2[i])
result = 0;
return result;
}