Compare commits

..

No commits in common. "2038788549f14cab9abbdd557b7152172bc83b23" and "146974c1afc903bcb72758cf20ba918116c3bc07" have entirely different histories.

3 changed files with 8 additions and 53 deletions

View File

@ -1,2 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<module classpath="CIDR" type="CPP_MODULE" version="4" />
<module type="CPP_MODULE" version="4">
<component name="NewModuleRootManager">
<content url="file://$MODULE_DIR$" />
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />
</component>
</module>

View File

@ -1,7 +1,6 @@
#include "input.h"
#include <string.h>
#include <ctype.h>
#include <stdlib.h>
// TODO:
// eine Funktion implementieren, die ein einzelnes Wort aus einer Textdatei (words.txt) einliest und als C-String zurückgibt.
@ -9,26 +8,5 @@
// Read words from file and store in 'words' array
int readWords(FILE *file, char words[][MAX_WORD_LEN], unsigned int maxWordCount)
{
char zeile[MAX_LINE_LEN];
char* teiler = ".;, ";
int wordCount = 0;
char* token;
printf("Datei geöffnet\n");
while(fgets(zeile, MAX_LINE_LEN, file)!=NULL)
{
for (int i = 0; i < 1024; i++)
if (zeile[i] == '\n') {
zeile[i] = '\0';
break;
}
}
token = strtok(zeile,teiler);
while(token != NULL)
{
strcpy(words[wordCount],token);
token = strtok(NULL,teiler);
wordCount++;
}
}
return wordCount;
}

View File

@ -1,29 +0,0 @@
commit e58f113c46c1af49c3680b6da5cc999b56b0093a (HEAD -> main, origin/main, origin/HEAD)
Author: Kruschat <max.kruschat@siemens.com>
Date: Thu Oct 23 14:55:49 2025 +0200
Test geändert
commit 89ca3acc38758a65a28a874ceda5d3253c1cb6d8
Author: Bannach <kevin.bannach@siemens.com>
Date: Thu Oct 23 14:54:03 2025 +0200
Testdatei
commit 15db90e12e6413714750ac23a78aa369bf192a22
Author: Bannach <kevin.bannach@siemens.com>
Date: Thu Oct 23 14:52:08 2025 +0200
Testdatei aktualisiert
commit b804c4264c21980ba6497fb76da0da6151c1b9ed
Author: Bannach <kevin.bannach@siemens.com>
Date: Wed Oct 22 20:57:00 2025 +0200
Textdatei Test hinzugefügt
commit 496e4d82e75945b8899aa012e0039034f40a1db1
Author: Kevin Bannach <bannachke98909@th-nuernberg.de>
Date: Wed Oct 22 07:21:52 2025 +0000
Initial commit