diff options
| author | Sven Eisenhauer <sven@sven-eisenhauer.net> | 2023-11-10 15:11:48 +0100 |
|---|---|---|
| committer | Sven Eisenhauer <sven@sven-eisenhauer.net> | 2023-11-10 15:11:48 +0100 |
| commit | 33613a85afc4b1481367fbe92a17ee59c240250b (patch) | |
| tree | 670b842326116b376b505ec2263878912fca97e2 /Bachelor/Verteilte Systeme/Praktikum2/loesung/telbuch.x | |
| download | Studium-master.tar.gz Studium-master.tar.bz2 | |
Diffstat (limited to 'Bachelor/Verteilte Systeme/Praktikum2/loesung/telbuch.x')
| -rw-r--r-- | Bachelor/Verteilte Systeme/Praktikum2/loesung/telbuch.x | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/Bachelor/Verteilte Systeme/Praktikum2/loesung/telbuch.x b/Bachelor/Verteilte Systeme/Praktikum2/loesung/telbuch.x new file mode 100644 index 0000000..e28bc97 --- /dev/null +++ b/Bachelor/Verteilte Systeme/Praktikum2/loesung/telbuch.x @@ -0,0 +1,24 @@ +struct addStruct
+{
+ char Name[45];
+ char TelNr[45];
+};
+
+struct searchStruct
+{
+ char Name[45];
+};
+
+struct Ergebnis
+{
+ char Eintrag[80];
+};
+
+program TELBUCH_VERWALTUNG
+{
+ version ONE
+ {
+ Ergebnis addEntry(addStruct eintrag) = 1;
+ Ergebnis searchEntry(searchStruct eintrag) = 2;
+ } = 1;
+} = 1234567;
|
