Skip to content
Snippets Groups Projects
Select Git revision
  • 08256e681ca958282c556749d6332bf473cf4251
  • master default
2 results

aufgabe-1.c

Blame
  • Forked from Peter Gerwinski / hp
    361 commits behind the upstream repository.
    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;
    }