doppelte funktion entfernen

This commit is contained in:
John Neumeier 2025-11-07 08:08:20 +01:00
parent 35ab724f53
commit 493c659ea2
4 changed files with 5 additions and 13 deletions

View File

@ -26,9 +26,9 @@
</component>
<component name="ChangeListManager">
<list default="true" id="432ce3b0-b2f5-4014-a4f8-364cc5adc8af" name="Changes" comment="">
<change beforePath="$PROJECT_DIR$/.idea/editor.xml" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/.idea/vcs.xml" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/.idea/workspace.xml" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/game.c" beforeDir="false" afterPath="$PROJECT_DIR$/game.c" afterDir="false" />
<change beforePath="$PROJECT_DIR$/game.o" beforeDir="false" afterPath="$PROJECT_DIR$/game.o" afterDir="false" />
<change beforePath="$PROJECT_DIR$/runTests.exe" beforeDir="false" afterPath="$PROJECT_DIR$/runTests.exe" afterDir="false" />
</list>
<option name="SHOW_DIALOG" value="false" />
<option name="HIGHLIGHT_CONFLICTS" value="true" />
@ -194,6 +194,7 @@
<workItem from="1761847486479" duration="154000" />
<workItem from="1761893964767" duration="5024000" />
<workItem from="1762085631333" duration="887000" />
<workItem from="1762498814624" duration="435000" />
</task>
<servers />
</component>

View File

@ -133,13 +133,4 @@ void showWordSalad(const char salad[MAX_SEARCH_FIELD_LEN][MAX_SEARCH_FIELD_LEN],
}
}
// Prints the word salad to console
void showWordSalad(const char salad[MAX_SEARCH_FIELD_LEN][MAX_SEARCH_FIELD_LEN],
unsigned int searchFieldLen)
{
for (unsigned int y = 0; y < searchFieldLen; y++) {
for (unsigned int x = 0; x < searchFieldLen; x++) {
printf("%c ", salad[y][x]);
}
printf("\n");
}
}

Binary file not shown.

Binary file not shown.