You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

9 lines
184 B

  1. #include "unity.h"
  2. #ifndef PROBE_H
  3. #define PROBE_H
  4. #define N 20
  5. int probe(int input);
  6. int feldFrei(int realU[N][N], int ii, int jj);
  7. int lose(int realU[N][N], char richtung);
  8. #endif