# German translation of manpages # This file is distributed under the same license as the manpages-l10n package. # Copyright © of this file: # Patrick Rother # Chris Leick , 2011-2016. # Helge Kreutzmann , 2019, 2021. # Mario Blättermann , 2023. msgid "" msgstr "" "Project-Id-Version: manpages-l10n 4.18.1\n" "POT-Creation-Date: 2024-03-01 17:09+0100\n" "PO-Revision-Date: 2023-08-30 17:10+0200\n" "Last-Translator: Mario Blättermann \n" "Language-Team: German \n" "Language: de\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Lokalize 23.04.3\n" #. type: TH #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, no-wrap msgid "stdarg" msgstr "stdarg" #. type: TH #: archlinux fedora-40 fedora-rawhide mageia-cauldron #, no-wrap msgid "2023-10-31" msgstr "31. Oktober 2023" #. type: TH #: archlinux fedora-40 fedora-rawhide mageia-cauldron #, no-wrap msgid "Linux man-pages 6.06" msgstr "Linux man-pages 6.06" #. type: SH #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, no-wrap msgid "NAME" msgstr "BEZEICHNUNG" #. type: Plain text #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed msgid "stdarg, va_start, va_arg, va_end, va_copy - variable argument lists" msgstr "stdarg, va_start, va_arg, va_end, va_copy - variable Argument-Listen" #. type: SH #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, no-wrap msgid "LIBRARY" msgstr "BIBLIOTHEK" #. type: Plain text #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed msgid "Standard C library (I, I<-lc>)" msgstr "Standard-C-Bibliothek (I, I<-lc>)" #. type: SH #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, no-wrap msgid "SYNOPSIS" msgstr "ÜBERSICHT" #. type: Plain text #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, no-wrap msgid "B<#include Estdarg.hE>\n" msgstr "B<#include Estdarg.hE>\n" #. type: Plain text #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, no-wrap msgid "" "BIB<, >IB<);>\n" "IB< va_arg(va_list >IB<, >IB<);>\n" "BIB<);>\n" "BIB<, va_list >IB<);>\n" msgstr "" "BIB<, >IB<);>\n" "IB< va_arg(va_list >IB<, >IB<);>\n" "BIB<);>\n" "BIB<, va_list >IB<);>\n" #. type: SH #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, no-wrap msgid "DESCRIPTION" msgstr "BESCHREIBUNG" #. type: Plain text #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed msgid "" "A function may be called with a varying number of arguments of varying " "types. The include file Istdarg.hE> declares a type I " "and defines three macros for stepping through a list of arguments whose " "number and types are not known to the called function." msgstr "" "Eine Funktion kann mit einer unterschiedlichen Anzahl von Argumenten " "verschiedenen Typs aufgerufen werden. Die Include-Datei I " "deklariert einen Typ B und definiert drei Makros, um eine Liste von " "Argumenten durchzugehen, deren Anzahl und Typen der aufgerufenen Funktion " "unbekannt sind." #. type: Plain text #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed msgid "" "The called function must declare an object of type I which is used " "by the macros B(), B(), and B()." msgstr "" "Die aufgerufene Funktion muss ein Objekt des Typs B deklarieren, " "welches von den Makros B(), B() und B() benutzt " "wird." #. type: SS #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, no-wrap msgid "va_start()" msgstr "va_start()" #. type: Plain text #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed msgid "" "The B() macro initializes I for subsequent use by " "B() and B(), and must be called first." msgstr "" "Das Makro B() initialisiert I zur nachfolgenden Benutzung " "durch B() und B() und muss zuerst aufgerufen werden." #. type: Plain text #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed msgid "" "The argument I is the name of the last argument before the variable " "argument list, that is, the last argument of which the calling function " "knows the type." msgstr "" "Das Argument I ist der Name des letzten Arguments vor der Liste der " "veränderlichen Argumente, das heisst, das letzt Argument, dessen Typ die " "aufrufende Funktion kennt." #. type: Plain text #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed msgid "" "Because the address of this argument may be used in the B() " "macro, it should not be declared as a register variable, or as a function or " "an array type." msgstr "" "Da die Adresse dieses Parameters im Makro B() benutzt wird, sollte " "er nicht als eine Registervariable, als Funktion oder als ein Feldtyp " "deklariert werden." #. type: SS #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, no-wrap msgid "va_arg()" msgstr "va_arg()" #. type: Plain text #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed msgid "" "The B() macro expands to an expression that has the type and value " "of the next argument in the call. The argument I is the I " "I initialized by B(). Each call to B() modifies " "I so that the next call returns the next argument. The argument I " "is a type name specified so that the type of a pointer to an object that has " "the specified type can be obtained simply by adding a * to I." msgstr "" "Das Makro B() expandiert zu einem Ausdruck, der den Typ und Wert des " "nächsten aufzurufenden Argumentes hat. Das Argument I ist die B " "I, initialisiert durch B(). Jeder Aufruf von B() " "verändert I so, dass der folgende Aufruf das nächste Argument " "zurückgibt. Der Parameter I ist ein Typenname, der so angegeben ist, " "dass der Typ eines Zeigers auf ein Objekt, das den angegebenen Typ hat, " "einfach durch Hinzufügen eines * zu I erhalten werden kann." #. type: Plain text #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed msgid "" "The first use of the B() macro after that of the B() " "macro returns the argument after I. Successive invocations return the " "values of the remaining arguments." msgstr "" "Die erste Benutzung des Makros B() nach B() gibt das " "Argument nach I zurück. Nachfolgende Aufrufe geben die Werte der " "verbleibenden Argumente zurück." #. type: Plain text #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed msgid "" "If there is no next argument, or if I is not compatible with the type " "of the actual next argument (as promoted according to the default argument " "promotions), random errors will occur." msgstr "" "Wenn es kein weiteres Argument gibt oder wenn I nicht kompatibel mit " "dem Typ des tatsächlich nächsten Argumentes ist (entsprechend der üblichen " "»argument promotions«), erscheinen zufällige Fehler." #. type: Plain text #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed msgid "" "If I is passed to a function that uses BIB<,>IB<),> " "then the value of I is undefined after the return of that function." msgstr "" "Falls I an eine Funktion übergeben wird, die BIB<," ">IB<)> benutzt, dann ist der Wert von I nach der Rückkehr dieser " "Funktion undefiniert." #. type: SS #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, no-wrap msgid "va_end()" msgstr "va_end()" #. type: Plain text #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed msgid "" "Each invocation of B() must be matched by a corresponding " "invocation of B() in the same function. After the call " "BIB<)> the variable I is undefined. Multiple traversals of " "the list, each bracketed by B() and B() are possible. " "B() may be a macro or a function." msgstr "" "Zu jedem Aufruf von B() muss zu einen zugehörigen Aufruf von " "B() in der gleichen Funktion geben. Nach dem Aufruf " "BIB<)> ist die Variable I undefiniert. Es sind mehrere " "Durchläufe der Liste möglich, jeweils von B() und B() " "eingeschlossen. B() kann ein Makro oder eine Funktion sein." #. type: SS #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, no-wrap msgid "va_copy()" msgstr "va_copy()" #. type: Plain text #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed msgid "" "The B() macro copies the (previously initialized) variable " "argument list I to I. The behavior is as if B() were " "applied to I with the same I argument, followed by the same " "number of B() invocations that was used to reach the current state " "of I." msgstr "" "Das Makro B() kopiert die (vorher initialisierte) " "Variablenargumentliste I nach I. Das Verhalten ist so, als ob " "B() auf I mit dem selben Argument I angewandt " "worden wäre, gefolgt von der gleichen Anzahl Aufrufe von B(), die " "benutzt wurden, um den aktuellen Status von I zu erreichen." # http://www.a-m-i.de/tips/stack/stack.php # http://de.wikipedia.org/wiki/Variadische_Funktion #. Proposal from clive@demon.net, 1997-02-28 #. type: Plain text #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed msgid "" "An obvious implementation would have a I be a pointer to the stack " "frame of the variadic function. In such a setup (by far the most common) " "there seems nothing against an assignment" msgstr "" "Eine naheliegende Implementierung hätte eine I, die ein Zeiger in " "den »Stack-Frame« der variadischen Funktion wäre. In einem derartigen " "Szenario (dem bei weitem üblichsten) scheint nichts gegen folgende Zuweisung " "zu sprechen" #. type: Plain text #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, no-wrap msgid "va_list aq = ap;\n" msgstr "va_list aq = ap;\n" #. type: Plain text #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed msgid "" "Unfortunately, there are also systems that make it an array of pointers (of " "length 1), and there one needs" msgstr "" "Leider gibt es auch Systeme, die es als Feld von Zeigern (der Länge 1) " "anlegen. Dort wird dann folgendes benötigt:" #. type: Plain text #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, no-wrap msgid "" "va_list aq;\n" "*aq = *ap;\n" msgstr "" "va_list aq;\n" "*aq = *ap;\n" #. type: Plain text #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed msgid "" "Finally, on systems where arguments are passed in registers, it may be " "necessary for B() to allocate memory, store the arguments there, " "and also an indication of which argument is next, so that B() can " "step through the list. Now B() can free the allocated memory " "again. To accommodate this situation, C99 adds a macro B(), so " "that the above assignment can be replaced by" msgstr "" "Zu guter Letzt kann es auf Systemen, die Argumente in Registern übergeben, " "nötig sein, dass B Speicher reserviert und in diesem die Argumente " "und einen Positionsanzeiger speichert, so dass B() diese Liste " "durchschreiten kann. Dann kann B() den reservierten Speicher wieder " "freigeben. Um dieser Situation Rechnung zu tragen, fügt C99 ein Makro " "B() hinzu, so dass obige Zuweisung durch Folgendes ersetzt werden " "kann" #. type: Plain text #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, no-wrap msgid "" "va_list aq;\n" "va_copy(aq, ap);\n" "\\&...\n" "va_end(aq);\n" msgstr "" "va_list aq;\n" "va_copy(aq, ap);\n" "…\n" "va_end(aq);\n" #. type: Plain text #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed msgid "" "Each invocation of B() must be matched by a corresponding " "invocation of B() in the same function. Some systems that do not " "supply B() have B<__va_copy> instead, since that was the name used " "in the draft proposal." msgstr "" "Zu jedem Aufruf von B() muss zu einen zugehörigen Aufruf von " "B() in der gleichen Funktion geben. Einige Systeme, die kein " "B() bereitstellen, haben stattdessen B<__va_copy>, da das der " "gleiche Name ist, der im ursprünglichen Vorschlag benutzt wurde." #. type: SH #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, no-wrap msgid "ATTRIBUTES" msgstr "ATTRIBUTE" #. type: Plain text #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed msgid "" "For an explanation of the terms used in this section, see B(7)." msgstr "" "Siehe B(7) für eine Erläuterung der in diesem Abschnitt " "verwandten Ausdrücke." #. type: tbl table #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, no-wrap msgid "Interface" msgstr "Schnittstelle" #. type: tbl table #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, no-wrap msgid "Attribute" msgstr "Attribut" #. type: tbl table #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, no-wrap msgid "Value" msgstr "Wert" #. type: tbl table #: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron #: opensuse-tumbleweed #, no-wrap msgid ".na\n" msgstr ".na\n" #. type: tbl table #: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron #: opensuse-tumbleweed #, no-wrap msgid ".nh\n" msgstr ".nh\n" #. type: tbl table #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, no-wrap msgid "" "B(),\n" "B(),\n" "B()" msgstr "" "B(),\n" "B(),\n" "B()" #. type: tbl table #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, no-wrap msgid "Thread safety" msgstr "Multithread-Fähigkeit" #. type: tbl table #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, no-wrap msgid "MT-Safe" msgstr "MT-Sicher" #. #-#-#-#-# archlinux: stdarg.3.pot (PACKAGE VERSION) #-#-#-#-# #. type: TQ #. #-#-#-#-# debian-bookworm: stdarg.3.pot (PACKAGE VERSION) #-#-#-#-# #. type: tbl table #. #-#-#-#-# debian-unstable: stdarg.3.pot (PACKAGE VERSION) #-#-#-#-# #. type: TQ #. #-#-#-#-# fedora-40: stdarg.3.pot (PACKAGE VERSION) #-#-#-#-# #. type: TQ #. #-#-#-#-# fedora-rawhide: stdarg.3.pot (PACKAGE VERSION) #-#-#-#-# #. type: TQ #. #-#-#-#-# mageia-cauldron: stdarg.3.pot (PACKAGE VERSION) #-#-#-#-# #. type: TQ #. #-#-#-#-# opensuse-leap-15-6: stdarg.3.pot (PACKAGE VERSION) #-#-#-#-# #. type: TQ #. #-#-#-#-# opensuse-tumbleweed: stdarg.3.pot (PACKAGE VERSION) #-#-#-#-# #. type: TQ #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, no-wrap msgid "B()" msgstr "B()" #. type: tbl table #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, no-wrap msgid "MT-Safe race:ap" msgstr "MT-Sicher race:ap" #. type: SH #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, no-wrap msgid "STANDARDS" msgstr "STANDARDS" #. type: Plain text #: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron #: opensuse-leap-15-6 opensuse-tumbleweed msgid "C11, POSIX.1-2008." msgstr "C11, POSIX.1-2008." #. type: SH #: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron #: opensuse-leap-15-6 opensuse-tumbleweed #, no-wrap msgid "HISTORY" msgstr "GESCHICHTE" #. type: TP #: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron #: opensuse-leap-15-6 opensuse-tumbleweed #, no-wrap msgid "B()" msgstr "B()" #. type: TQ #: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron #: opensuse-leap-15-6 opensuse-tumbleweed #, no-wrap msgid "B()" msgstr "B()" #. type: Plain text #: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron #: opensuse-leap-15-6 opensuse-tumbleweed msgid "C89, POSIX.1-2001." msgstr "C89, POSIX.1-2001." #. type: TP #: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron #: opensuse-leap-15-6 opensuse-tumbleweed #, no-wrap msgid "B()" msgstr "B()" #. type: Plain text #: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron #: opensuse-leap-15-6 opensuse-tumbleweed msgid "C99, POSIX.1-2001." msgstr "C99, POSIX.1-2001." #. type: SH #: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron #: opensuse-leap-15-6 opensuse-tumbleweed #, no-wrap msgid "CAVEATS" msgstr "WARNUNGEN" #. type: Plain text #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed msgid "" "Unlike the historical B macros, the B macros do not permit " "programmers to code a function with no fixed arguments. This problem " "generates work mainly when converting B code to B code, but " "it also creates difficulties for variadic functions that wish to pass all of " "their arguments on to a function that takes a I argument, such as " "B(3)." msgstr "" "Im Gegensatz zu den historischen Makros B erlauben die Makros " "B dem Programmierer nicht, eine Funktion ohne feste Argumente zu " "implementieren. Das ist hauptsächlich ein Problem, wenn man Code mit " "B nach B konvertiert, aber es erzeugt auch Schwierigkeiten " "bei veränderlichen Funktionen die wünschen, ihre Argumente an eine Funktion " "weiterzugeben, die ein Argument B aufnimmt, so wie B(3)." #. type: SH #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, no-wrap msgid "EXAMPLES" msgstr "BEISPIELE" #. type: Plain text #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed msgid "" "The function I takes a string of format characters and prints out the " "argument associated with each format character based on the type." msgstr "" "Die Funktion I nimmt eine Zeichenkette von Formatzeichen entgegen und " "gibt für jedes Zeichen ein Argument des entsprechenden Typs aus." #. type: Plain text #: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron #: opensuse-tumbleweed #, no-wrap msgid "" "#include Estdio.hE\n" "#include Estdarg.hE\n" "\\&\n" "void\n" "foo(char *fmt, ...) /* \\[aq]...\\[aq] is C syntax for a variadic function */\n" "\\&\n" "{\n" " va_list ap;\n" " int d;\n" " char c;\n" " char *s;\n" "\\&\n" " va_start(ap, fmt);\n" " while (*fmt)\n" " switch (*fmt++) {\n" " case \\[aq]s\\[aq]: /* string */\n" " s = va_arg(ap, char *);\n" " printf(\"string %s\\en\", s);\n" " break;\n" " case \\[aq]d\\[aq]: /* int */\n" " d = va_arg(ap, int);\n" " printf(\"int %d\\en\", d);\n" " break;\n" " case \\[aq]c\\[aq]: /* char */\n" " /* need a cast here since va_arg only\n" " takes fully promoted types */\n" " c = (char) va_arg(ap, int);\n" " printf(\"char %c\\en\", c);\n" " break;\n" " }\n" " va_end(ap);\n" "}\n" msgstr "" "#include Estdio.hE\n" "#include Estdarg.hE\n" "\\&\n" "void\n" "foo(char *fmt, …) /* »…« ist C-Syntax für eine variadische Funktion */\n" "\\&\n" "{\n" " va_list ap;\n" " int d;\n" " char c;\n" " char *s;\n" "\\&\n" " va_start(ap, fmt);\n" " while (*fmt)\n" " switch (*fmt++) {\n" " case \\[aq]s\\[aq]: /* Zeichenkette */\n" " s = va_arg(ap, char *);\n" " printf(\"string %s\\en\", s);\n" " break;\n" " case \\[aq]d\\[aq]: /* Ganzzahl */\n" " d = va_arg(ap, int);\n" " printf(\"int %d\\en\", d);\n" " break;\n" " case \\[aq]c\\[aq]: /* Zeichen */\n" " /* hier wird eine Typumwandlung benötigt, da va_arg\n" " nur vollständig unterstützte Typen aufnimmt */\n" " c = (char) va_arg(ap, int);\n" " printf(\"char %c\\en\", c);\n" " break;\n" " }\n" " va_end(ap);\n" "}\n" #. type: SH #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, no-wrap msgid "SEE ALSO" msgstr "SIEHE AUCH" #. type: Plain text #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed msgid "B(3), B(3), B(3)" msgstr "B(3), B(3), B(3)" #. type: TH #: debian-bookworm #, no-wrap msgid "2023-02-05" msgstr "5. Februar 2023" #. type: TH #: debian-bookworm #, no-wrap msgid "Linux man-pages 6.03" msgstr "Linux man-pages 6.03" #. type: Plain text #: debian-bookworm msgid "C99." msgstr "C99." #. type: SH #: debian-bookworm #, no-wrap msgid "BUGS" msgstr "FEHLER" #. type: Plain text #: debian-bookworm opensuse-leap-15-6 #, no-wrap msgid "" "#include Estdio.hE\n" "#include Estdarg.hE\n" msgstr "" "#include Estdio.hE\n" "#include Estdarg.hE\n" #. type: Plain text #: debian-bookworm opensuse-leap-15-6 #, no-wrap msgid "" "void\n" "foo(char *fmt, ...) /* \\[aq]...\\[aq] is C syntax for a variadic function */\n" msgstr "" "void\n" "foo(char *fmt, …) /* »…« ist C-Syntax für eine variadische Funktion */\n" #. type: Plain text #: debian-bookworm opensuse-leap-15-6 #, no-wrap msgid "" "{\n" " va_list ap;\n" " int d;\n" " char c;\n" " char *s;\n" msgstr "" "{\n" " va_list ap;\n" " int d;\n" " char c;\n" " char *s;\n" #. type: Plain text #: debian-bookworm opensuse-leap-15-6 #, no-wrap msgid "" " va_start(ap, fmt);\n" " while (*fmt)\n" " switch (*fmt++) {\n" " case \\[aq]s\\[aq]: /* string */\n" " s = va_arg(ap, char *);\n" " printf(\"string %s\\en\", s);\n" " break;\n" " case \\[aq]d\\[aq]: /* int */\n" " d = va_arg(ap, int);\n" " printf(\"int %d\\en\", d);\n" " break;\n" " case \\[aq]c\\[aq]: /* char */\n" " /* need a cast here since va_arg only\n" " takes fully promoted types */\n" " c = (char) va_arg(ap, int);\n" " printf(\"char %c\\en\", c);\n" " break;\n" " }\n" " va_end(ap);\n" "}\n" msgstr "" " va_start(ap, fmt);\n" " while (*fmt)\n" " switch (*fmt++) {\n" " case \\[aq]s\\[aq]: /* Zeichenkette */\n" " s = va_arg(ap, char *);\n" " printf(\"string %s\\en\", s);\n" " break;\n" " case \\[aq]d\\[aq]: /* Ganzzahl */\n" " d = va_arg(ap, int);\n" " printf(\"int %d\\en\", d);\n" " break;\n" " case \\[aq]c\\[aq]: /* Zeichen */\n" " /* hier wird eine Typumwandlung benötigt, da va_arg\n" " nur vollständig unterstützte Typen aufnimmt */\n" " c = (char) va_arg(ap, int);\n" " printf(\"Zeichen %c\\en\", c);\n" " break;\n" " }\n" " va_end(ap);\n" "}\n" #. type: TH #: debian-unstable opensuse-tumbleweed #, no-wrap msgid "2023-07-20" msgstr "20. Juli 2023" #. type: TH #: debian-unstable opensuse-tumbleweed #, no-wrap msgid "Linux man-pages 6.05.01" msgstr "Linux man-pages 6.05.01" #. type: TH #: opensuse-leap-15-6 #, no-wrap msgid "2023-03-30" msgstr "30. März 2023" #. type: TH #: opensuse-leap-15-6 #, no-wrap msgid "Linux man-pages 6.04" msgstr "Linux-Handbuchseiten 6.04"