Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > de.sci.electronics > #344686
| From | Helmut Schellong <var@schellong.biz> |
|---|---|
| Newsgroups | de.sci.electronics |
| Subject | Re: Wirkungsgrad von 100 m RG213U |
| Date | 2023-10-03 18:50 +0200 |
| Message-ID | <ufhgp7$trej$1@solani.org> (permalink) |
| References | (14 earlier) <20230928205526.66fb6f01@Achmuehle.WOR> <uf4ssv$nni7$1@solani.org> <20230929201749.169a432c@Achmuehle.WOR> <ufd1gf$ro06$1@solani.org> <ko2h9uFhe16U1@mid.individual.net> |
Am 03.10.2023 um 14:55 schrieb Hans-Peter Diettrich:
> On 10/2/23 2:05 AM, Helmut Schellong wrote:
>> Am 29.09.2023 um 20:17 schrieb Sieghard Schicktanz:
>
>> 6.4.9 Comments
>> 1 Except within a character constant, a string literal, or a comment, the characters /*
>> introduce a comment.
>> The contents of such a comment are examined only to identify multibyte characters and
>> to find the characters */ that terminate it.
>>
>> 2 Except within a character constant, a string literal, or a comment, the characters //
>> introduce a comment that includes all multibyte characters up to, but not including,
>> the next new-line character.
>> The contents of such a comment are examined only to identify multibyte characters
>> and to find the terminating new-line character.
>>
>> Ein NL gehört übrigens _nicht_ zum Zeilenkommentar.
>> Ich meine, das hat hier jemand mal gegenteilig erzählt.
>
> Von einem \NL bleibt aber nur NL übrig, nicht das Fortsetzungszeichen innerhalb einer
> Makro-Definition.
Das ist irrelevant, weil in translation phase 2 die Zeichenfolgen \NL _blind_
und _vor_ phase 3 (Kommentare) gelöscht werden.
Ich beziehe mich oben nur auf Absatz 2 aus dem Standard-Draft: Zeilenkommentar.
Also auch auf Kommentare außerhalb von Zeilenverlängerungen und außerhalb von PP-Texten.
In meinem bish-Interpreter habe ich ebenfalls Zeilenkommentare implementiert:
echo kkk #kommentar
echo sss
'NL' und ';' sind in der 'bish' Kommando-Ende-Markierungen.
NL wird vom Kommentar stehen gelassen, so daß 'echo kkk' durch NL ausgeführt wird.
>>
>> Die Definitionen der Kommentare enthalten keinerlei Hinweise auf eine Betrachtungsebene.
>> Bezug ist folglich die sichtbare C-Quelle (read-only).
>
> "Read only" bedeutet garnichts wenn der Quelltext vom Präprozessor geändert wird.
"Bezug ist folglich die sichtbare C-Quelle (read-only)."
Vorstehender Satz bleibt unverändert bestehen.
Der Quelltext wird durch _gar nichts_ geändert, nicht mal die Metadaten der Datei.
Die Quelle wird strikt open(read-only) behandelt.
Entstehende Translations-Dateien werden in /tmp/... (Unix) gespeichert.
Der User sieht ja nur seine Quellen.
Folglich muß ein Standard seine Definitionen darauf beziehen.
|A C program need not all be translated at the same time.
|The text of the program is kept in units called source files, (or preprocessing files)
|in this document.
|A source file together with all the headers and source files included via the
|preprocessing directive #include is known as a preprocessing translation unit.
|After preprocessing, a preprocessing translation unit is called a translation unit.
Stefan Ram hatte das bereits gepostet, wenn ich nicht irre.
1) source files == preprocessing files (read-only)
2) preprocessing translation unit
3) translation unit
>> EXAMPLE
>> //\
>> i(); // part of a two-line comment
>> /\
>> / j(); // part of a two-line comment
>
> Beides ist fehlerhaft, was ein guter Compiler sogar meldet!
Nein, alles das ist korrektes C.
Andernfalls hätte der Standard es als fehlerhaft gekennzeichnet - hat er aber nicht.
Der Standard hat das als unausgesprochene Warnung in sein EXAMPLE aufgenommen.
> Bitte zeige einen fehlerfrei compilierbaren Quelltext.
"a//b" // four-character string literal
#include "//e" // undefined behavior
// */ // comment, not syntax error
f = g/**//h; // equivalent to f = g / h;
//\
i(); // part of a two-line comment
/\
/ j(); // part of a two-line comment
#define glue(x,y) x##y
glue(/,/) k(); // syntax error, not comment
/*//*/ l(); // equivalent to l();
m = n//**/o
+ p; // equivalent to m = n + p;
Vorstehend ist alles, wo nicht steht: undefined behavior, syntax error,
fehlerfrei kompilierbar.
Ein 'warning' ist etwas anderes als ein 'error'!
Allerdings würde ich niemals selbst irgendetwas von den Beispielen oben programmieren.
Mit Ausnahme der ersten Zeile.
Ich programmiere nämlich professionell, und nicht wie ein albernes Spielkind.
27.09.2023, 16:51 :
|Ich habe noch nie Zeilenkommentare //... innerhalb einer PP-Zeile
|geschrieben. Sondern nur /*...*/.
|Noch nie habe ich /*...*/ über Zeilenverlängerungen \NL hinweg
|geschrieben. Das wäre auch nie sinnvoll gewesen.
Das mache ich pauschal so wie vorstehend, um niemals in eine Bredouille zu geraten.
>> Lies die man-Page eines externen cpp.
>> Ein externer cpp kann beliebig unpassend zum internen System-Compiler-cpp sein.
>
> Und wieso gibt es dann eine man page zum cpp?
Um darin zu warnen, daß dieser cpp beliebig unpassend zum internen System-Compiler-cpp sein kann.
> Richtig, weil er völlig unabhängig von einem Compiler für beliebige Texte verwendet werden kann.
> Früher ging das sogar für C Quelltexte, aber das war wohl noch vor Deiner Zeit ;-)
Ich befasse und befaßte mich halt nicht mit solch einem Scheiß, wo man
die Kompatibilität selbst herstellen muß.
Beim cc-internen PP muß man das nicht - ergo...
--
Mit freundlichen Grüßen
Helmut Schellong
Back to de.sci.electronics | Previous | Next — Previous in thread | Next in thread | Find similar
Re: Wirkungsgrad von 100 m RG213U Sieghard Schicktanz <Sieghard.Schicktanz@SchS.de> - 2023-09-19 21:13 +0200
Re: Wirkungsgrad von 100 m RG213U Hans-Peter Diettrich <DrDiettrich1@aol.com> - 2023-09-20 11:56 +0200
Re: Wirkungsgrad von 100 m RG213U Helmut Schellong <var@schellong.biz> - 2023-09-20 16:27 +0200
Re: Wirkungsgrad von 100 m RG213U Hartmut Kraus <hartmut.melina@web.de> - 2023-09-20 21:55 +0200
Re: Wirkungsgrad von 100 m RG213U Marte Schwarz <marte.schwarz@gmx.de> - 2023-09-21 08:03 +0200
Re: Wirkungsgrad von 100 m RG213U Helmut Schellong <var@schellong.biz> - 2023-09-21 14:51 +0200
Re: Wirkungsgrad von 100 m RG213U Helmut Schellong <var@schellong.biz> - 2023-09-22 11:29 +0200
Re: Wirkungsgrad von 100 m RG213U Hans-Peter Diettrich <DrDiettrich1@aol.com> - 2023-09-22 23:29 +0200
Re: Wirkungsgrad von 100 m RG213U Helmut Schellong <var@schellong.biz> - 2023-09-23 12:54 +0200
Re: Wirkungsgrad von 100 m RG213U Hans-Peter Diettrich <DrDiettrich1@aol.com> - 2023-09-23 21:54 +0200
Re: Wirkungsgrad von 100 m RG213U Helmut Schellong <var@schellong.biz> - 2023-09-23 23:00 +0200
Re: Wirkungsgrad von 100 m RG213U Hans-Peter Diettrich <DrDiettrich1@aol.com> - 2023-09-23 23:26 +0200
Re: Wirkungsgrad von 100 m RG213U Helmut Schellong <var@schellong.biz> - 2023-09-24 00:04 +0200
Re: Wirkungsgrad von 100 m RG213U Rolf Bombach <rolfnospambombach@invalid.invalid> - 2023-10-11 23:17 +0200
Re: Wirkungsgrad von 100 m RG213U Helmut Schellong <var@schellong.biz> - 2023-10-11 23:40 +0200
Re: Wirkungsgrad von 100 m RG213U Holger Schieferdecker <spamless@gmx.de> - 2023-09-21 09:57 +0200
Re: Wirkungsgrad von 100 m RG213U Hartmut Kraus <hartmut.melina@web.de> - 2023-09-21 10:16 +0200
Re: Wirkungsgrad von 100 m RG213U Hartmut Kraus <hartmut.melina@web.de> - 2023-09-21 10:18 +0200
Re: Wirkungsgrad von 100 m RG213U Hartmut Kraus <hartmut.melina@web.de> - 2023-09-21 10:48 +0200
Re: Wirkungsgrad von 100 m RG213U "Wolfgang Allinger" <all2001@spambog.com> - 2023-09-21 06:12 -0400
Re: Wirkungsgrad von 100 m RG213U Carla Schneider <carla_schn@proton.me> - 2023-09-21 14:10 +0200
Re: Wirkungsgrad von 100 m RG213U Helmut Schellong <var@schellong.biz> - 2023-09-21 16:30 +0200
Re: Wirkungsgrad von 100 m RG213U "Wolfgang Allinger" <all2001@spambog.com> - 2023-09-21 18:11 -0400
Re: Wirkungsgrad von 100 m RG213U Carla Schneider <carla_schn@proton.me> - 2023-09-22 08:20 +0200
Re: Wirkungsgrad von 100 m RG213U Helmut Schellong <var@schellong.biz> - 2023-09-22 14:56 +0200
Re: Wirkungsgrad von 100 m RG213U "Wolfgang Allinger" <all2001@spambog.com> - 2023-09-22 19:35 -0400
Re: Wirkungsgrad von 100 m RG213U Helmut Schellong <var@schellong.biz> - 2023-09-23 14:05 +0200
Re: Wirkungsgrad von 100 m RG213U Hartmut Kraus <hartmut.melina@web.de> - 2023-09-23 22:05 +0200
Re: Wirkungsgrad von 100 m RG213U Helmut Schellong <var@schellong.biz> - 2023-09-23 23:05 +0200
Re: Wirkungsgrad von 100 m RG213U Hartmut Kraus <hartmut.melina@web.de> - 2023-09-24 18:30 +0200
Re: Wirkungsgrad von 100 m RG213U Helmut Schellong <var@schellong.biz> - 2023-09-24 20:40 +0200
Re: Wirkungsgrad von 100 m RG213U Hartmut Kraus <hartmut.melina@web.de> - 2023-09-25 22:32 +0200
Re: Wirkungsgrad von 100 m RG213U Helmut Schellong <var@schellong.biz> - 2023-09-26 17:30 +0200
Re: Wirkungsgrad von 100 m RG213U Hergen Lehmann <hlehmann.expires.12-22@snafu.de> - 2023-09-21 14:44 +0200
Re: Wirkungsgrad von 100 m RG213U Hans-Peter Diettrich <DrDiettrich1@aol.com> - 2023-09-21 16:53 +0200
Re: Wirkungsgrad von 100 m RG213U Hergen Lehmann <hlehmann.expires.12-22@snafu.de> - 2023-09-21 17:24 +0200
Re: Wirkungsgrad von 100 m RG213U Hans-Peter Diettrich <DrDiettrich1@aol.com> - 2023-09-22 00:45 +0200
Re: Wirkungsgrad von 100 m RG213U Hergen Lehmann <hlehmann.expires.12-22@snafu.de> - 2023-09-22 10:31 +0200
Re: Wirkungsgrad von 100 m RG213U Hans-Peter Diettrich <DrDiettrich1@aol.com> - 2023-09-23 00:50 +0200
Re: Wirkungsgrad von 100 m RG213U Hartmut Kraus <hartmut.melina@web.de> - 2023-09-23 09:25 +0200
Re: Wirkungsgrad von 100 m RG213U Hans-Peter Diettrich <DrDiettrich1@aol.com> - 2023-09-23 11:11 +0200
Re: Wirkungsgrad von 100 m RG213U Helmut Schellong <var@schellong.biz> - 2023-09-23 13:39 +0200
Re: Wirkungsgrad von 100 m RG213U Sieghard Schicktanz <Sieghard.Schicktanz@SchS.de> - 2023-09-23 20:41 +0200
Re: Wirkungsgrad von 100 m RG213U Helmut Schellong <var@schellong.biz> - 2023-09-23 22:46 +0200
Re: Wirkungsgrad von 100 m RG213U Hans-Peter Diettrich <DrDiettrich1@aol.com> - 2023-09-23 23:30 +0200
Re: Wirkungsgrad von 100 m RG213U Helmut Schellong <var@schellong.biz> - 2023-09-24 00:07 +0200
Re: Wirkungsgrad von 100 m RG213U Hans-Peter Diettrich <DrDiettrich1@aol.com> - 2023-09-23 22:11 +0200
Re: Wirkungsgrad von 100 m RG213U Helmut Schellong <var@schellong.biz> - 2023-09-23 23:28 +0200
Re: Wirkungsgrad von 100 m RG213U Rolf Bombach <rolfnospambombach@invalid.invalid> - 2023-09-28 20:49 +0200
Re: Wirkungsgrad von 100 m RG213U Helmut Schellong <var@schellong.biz> - 2023-09-28 22:48 +0200
Re: Wirkungsgrad von 100 m RG213U Volker Bartheld <news2023@bartheld.net> - 2023-09-29 14:52 +0200
Re: Wirkungsgrad von 100 m RG213U Helmut Schellong <var@schellong.biz> - 2023-10-01 23:21 +0200
Re: Wirkungsgrad von 100 m RG213U Sieghard Schicktanz <Sieghard.Schicktanz@SchS.de> - 2023-09-23 21:11 +0200
Re: Wirkungsgrad von 100 m RG213U Hans-Peter Diettrich <DrDiettrich1@aol.com> - 2023-09-23 23:14 +0200
Re: Wirkungsgrad von 100 m RG213U Sieghard Schicktanz <Sieghard.Schicktanz@SchS.de> - 2023-09-24 21:03 +0200
Re: Wirkungsgrad von 100 m RG213U Helmut Schellong <var@schellong.biz> - 2023-09-24 22:49 +0200
Re: Wirkungsgrad von 100 m RG213U Sieghard Schicktanz <Sieghard.Schicktanz@SchS.de> - 2023-09-25 21:35 +0200
Re: Wirkungsgrad von 100 m RG213U Helmut Schellong <var@schellong.biz> - 2023-09-26 12:28 +0200
Re: Wirkungsgrad von 100 m RG213U Hans-Peter Diettrich <DrDiettrich1@aol.com> - 2023-09-25 23:13 +0200
Re: Wirkungsgrad von 100 m RG213U Helmut Schellong <var@schellong.biz> - 2023-09-21 18:18 +0200
Re: Wirkungsgrad von 100 m RG213U Hans-Peter Diettrich <DrDiettrich1@aol.com> - 2023-09-22 00:20 +0200
Re: Wirkungsgrad von 100 m RG213U Helmut Schellong <var@schellong.biz> - 2023-09-22 08:56 +0200
Re: Wirkungsgrad von 100 m RG213U Leo Baumann <ib@leobaumann.de> - 2023-09-22 09:01 +0200
Re: Wirkungsgrad von 100 m RG213U Helmut Schellong <var@schellong.biz> - 2023-09-22 09:43 +0200
Re: Wirkungsgrad von 100 m RG213U Leo Baumann <ib@leobaumann.de> - 2023-09-22 09:58 +0200
Re: Wirkungsgrad von 100 m RG213U Helmut Schellong <var@schellong.biz> - 2023-09-22 11:12 +0200
Re: Wirkungsgrad von 100 m RG213U Hans-Peter Diettrich <DrDiettrich1@aol.com> - 2023-09-23 00:50 +0200
Re: Wirkungsgrad von 100 m RG213U Helmut Schellong <var@schellong.biz> - 2023-09-23 13:29 +0200
Re: Wirkungsgrad von 100 m RG213U Hans-Peter Diettrich <DrDiettrich1@aol.com> - 2023-09-23 22:19 +0200
Re: Wirkungsgrad von 100 m RG213U Helmut Schellong <var@schellong.biz> - 2023-09-23 23:36 +0200
Re: Wirkungsgrad von 100 m RG213U Holger Schieferdecker <spamless@gmx.de> - 2023-09-26 12:31 +0200
Re: Wirkungsgrad von 100 m RG213U Helmut Schellong <var@schellong.biz> - 2023-09-26 14:21 +0200
Re: Wirkungsgrad von 100 m RG213U Carla Schneider <carla_schn@proton.me> - 2023-09-22 13:50 +0200
Re: Wirkungsgrad von 100 m RG213U Leo Baumann <ib@leobaumann.de> - 2023-09-22 15:10 +0200
Re: Wirkungsgrad von 100 m RG213U Carla Schneider <carla_schn@proton.me> - 2023-09-22 15:21 +0200
Re: Wirkungsgrad von 100 m RG213U Leo Baumann <ib@leobaumann.de> - 2023-09-22 15:25 +0200
Re: Wirkungsgrad von 100 m RG213U Andreas Fecht <forum@aftec.de> - 2023-09-22 15:39 +0200
Re: Wirkungsgrad von 100 m RG213U Leo Baumann <ib@leobaumann.de> - 2023-09-22 15:41 +0200
Re: Wirkungsgrad von 100 m RG213U Carla Schneider <carla_schn@proton.me> - 2023-09-22 16:08 +0200
Re: Wirkungsgrad von 100 m RG213U Leo Baumann <ib@leobaumann.de> - 2023-09-22 16:07 +0200
Re: Wirkungsgrad von 100 m RG213U Carla Schneider <carla_schn@proton.me> - 2023-09-22 16:20 +0200
Re: Wirkungsgrad von 100 m RG213U Leo Baumann <ib@leobaumann.de> - 2023-09-22 16:32 +0200
Re: Wirkungsgrad von 100 m RG213U Helmut Schellong <var@schellong.biz> - 2023-09-22 16:03 +0200
Re: Wirkungsgrad von 100 m RG213U Hans-Peter Diettrich <DrDiettrich1@aol.com> - 2023-09-23 01:09 +0200
Re: Wirkungsgrad von 100 m RG213U Hans-Peter Diettrich <DrDiettrich1@aol.com> - 2023-09-23 01:36 +0200
Re: Wirkungsgrad von 100 m RG213U Hans-Peter Diettrich <DrDiettrich1@aol.com> - 2023-09-27 01:51 +0200
Re: Wirkungsgrad von 100 m RG213U "Wolfgang Allinger" <all2001@spambog.com> - 2023-09-21 18:23 -0400
Re: Wirkungsgrad von 100 m RG213U Hergen Lehmann <hlehmann.expires.12-22@snafu.de> - 2023-09-22 10:49 +0200
Re: Wirkungsgrad von 100 m RG213U Volker Bartheld <news2023@bartheld.net> - 2023-09-22 14:19 +0200
Re: Wirkungsgrad von 100 m RG213U Helmut Schellong <var@schellong.biz> - 2023-09-22 15:28 +0200
Re: Wirkungsgrad von 100 m RG213U Hans-Peter Diettrich <DrDiettrich1@aol.com> - 2023-09-23 01:30 +0200
Re: Wirkungsgrad von 100 m RG213U Hartmut Kraus <hartmut.melina@web.de> - 2023-09-23 09:28 +0200
Re: Wirkungsgrad von 100 m RG213U "Wolfgang Allinger" <all2001@spambog.com> - 2023-09-22 19:55 -0400
Re: Wirkungsgrad von 100 m RG213U Hartmut Kraus <hartmut.melina@web.de> - 2023-09-23 09:30 +0200
Re: Wirkungsgrad von 100 m RG213U Helmut Schellong <var@schellong.biz> - 2023-09-22 11:33 +0200
Re: Wirkungsgrad von 100 m RG213U Rolf Bombach <rolfnospambombach@invalid.invalid> - 2023-09-28 20:32 +0200
Re: Wirkungsgrad von 100 m RG213U Helmut Schellong <var@schellong.biz> - 2023-09-21 11:51 +0200
Re: Wirkungsgrad von 100 m RG213U Hartmut Kraus <hartmut.melina@web.de> - 2023-09-21 14:57 +0200
Re: Wirkungsgrad von 100 m RG213U Hans-Peter Diettrich <DrDiettrich1@aol.com> - 2023-09-21 13:18 +0200
Re: Wirkungsgrad von 100 m RG213U Carla Schneider <carla_schn@proton.me> - 2023-09-21 14:18 +0200
Re: Wirkungsgrad von 100 m RG213U Helmut Schellong <var@schellong.biz> - 2023-09-22 11:16 +0200
Re: Wirkungsgrad von 100 m RG213U Hans-Peter Diettrich <DrDiettrich1@aol.com> - 2023-09-22 23:29 +0200
Re: Wirkungsgrad von 100 m RG213U Helmut Schellong <var@schellong.biz> - 2023-09-23 12:49 +0200
Re: Wirkungsgrad von 100 m RG213U Hans-Peter Diettrich <DrDiettrich1@aol.com> - 2023-09-23 22:08 +0200
Re: Wirkungsgrad von 100 m RG213U Helmut Schellong <var@schellong.biz> - 2023-09-23 23:27 +0200
Re: Wirkungsgrad von 100 m RG213U Hans-Peter Diettrich <DrDiettrich1@aol.com> - 2023-09-24 00:10 +0200
Re: Wirkungsgrad von 100 m RG213U Helmut Schellong <var@schellong.biz> - 2023-09-24 01:19 +0200
Re: Wirkungsgrad von 100 m RG213U Helmut Schellong <var@schellong.biz> - 2023-09-24 09:27 +0200
Re: Wirkungsgrad von 100 m RG213U Hans-Peter Diettrich <DrDiettrich1@aol.com> - 2023-09-24 19:51 +0200
Re: Wirkungsgrad von 100 m RG213U Helmut Schellong <var@schellong.biz> - 2023-09-24 21:37 +0200
Re: Wirkungsgrad von 100 m RG213U Helmut Schellong <var@schellong.biz> - 2023-09-25 00:30 +0200
Re: Wirkungsgrad von 100 m RG213U Hans-Peter Diettrich <DrDiettrich1@aol.com> - 2023-09-25 22:59 +0200
Re: Wirkungsgrad von 100 m RG213U Helmut Schellong <var@schellong.biz> - 2023-09-26 14:09 +0200
Re: Wirkungsgrad von 100 m RG213U Hans-Peter Diettrich <DrDiettrich1@aol.com> - 2023-09-27 01:39 +0200
Re: Wirkungsgrad von 100 m RG213U Helmut Schellong <var@schellong.biz> - 2023-09-27 09:39 +0200
Re: Wirkungsgrad von 100 m RG213U Hans-Peter Diettrich <DrDiettrich1@aol.com> - 2023-09-27 11:54 +0200
Re: Wirkungsgrad von 100 m RG213U Helmut Schellong <var@schellong.biz> - 2023-09-27 16:51 +0200
Re: Wirkungsgrad von 100 m RG213U Sieghard Schicktanz <Sieghard.Schicktanz@SchS.de> - 2023-09-27 21:23 +0200
Re: Wirkungsgrad von 100 m RG213U Helmut Schellong <var@schellong.biz> - 2023-09-28 08:51 +0200
Re: Wirkungsgrad von 100 m RG213U Sieghard Schicktanz <Sieghard.Schicktanz@SchS.de> - 2023-09-28 20:55 +0200
Re: Wirkungsgrad von 100 m RG213U Helmut Schellong <var@schellong.biz> - 2023-09-28 23:57 +0200
Re: Wirkungsgrad von 100 m RG213U Sieghard Schicktanz <Sieghard.Schicktanz@SchS.de> - 2023-09-29 20:17 +0200
Re: Wirkungsgrad von 100 m RG213U Helmut Schellong <var@schellong.biz> - 2023-10-02 02:05 +0200
Re: Wirkungsgrad von 100 m RG213U Hans-Peter Diettrich <DrDiettrich1@aol.com> - 2023-10-03 14:55 +0200
Re: Wirkungsgrad von 100 m RG213U Helmut Schellong <var@schellong.biz> - 2023-10-03 18:50 +0200
Re: Wirkungsgrad von 100 m RG213U Hans-Peter Diettrich <DrDiettrich1@aol.com> - 2023-10-04 10:52 +0200
Re: Wirkungsgrad von 100 m RG213U Hergen Lehmann <hlehmann.expires.12-22@snafu.de> - 2023-10-04 12:48 +0200
Re: Wirkungsgrad von 100 m RG213U Helmut Schellong <var@schellong.biz> - 2023-10-04 16:33 +0200
Re: Wirkungsgrad von 100 m RG213U Michael Schwingen <news-1513678000@discworld.dascon.de> - 2023-09-28 11:45 +0000
Re: Wirkungsgrad von 100 m RG213U Helmut Schellong <var@schellong.biz> - 2023-09-28 16:17 +0200
Re: Wirkungsgrad von 100 m RG213U Michael Schwingen <news-1513678000@discworld.dascon.de> - 2023-09-28 17:07 +0000
Re: Wirkungsgrad von 100 m RG213U Helmut Schellong <var@schellong.biz> - 2023-09-28 23:09 +0200
Re: Wirkungsgrad von 100 m RG213U Hans-Peter Diettrich <DrDiettrich1@aol.com> - 2023-09-28 03:02 +0200
Re: Wirkungsgrad von 100 m RG213U Helmut Schellong <var@schellong.biz> - 2023-09-21 14:42 +0200
Re: Wirkungsgrad von 100 m RG213U Hans-Peter Diettrich <DrDiettrich1@aol.com> - 2023-09-21 16:42 +0200
Re: Wirkungsgrad von 100 m RG213U Helmut Schellong <var@schellong.biz> - 2023-09-21 17:21 +0200
Re: Wirkungsgrad von 100 m RG213U Rolf Bombach <rolfnospambombach@invalid.invalid> - 2023-10-05 21:10 +0200
Re: Wirkungsgrad von 100 m RG213U Helmut Schellong <var@schellong.biz> - 2023-10-06 02:03 +0200
Re: Wirkungsgrad von 100 m RG213U Andreas Bockelmann <xotzil@gmx.de> - 2023-10-06 07:49 +0200
csiph-web