.\" -*- coding: UTF-8 -*- .\" Copyright (c) 1993 by Thomas Koenig (ig25@rz.uni-karlsruhe.de) .\" .\" %%%LICENSE_START(VERBATIM) .\" Permission is granted to make and distribute verbatim copies of this .\" manual provided the copyright notice and this permission notice are .\" preserved on all copies. .\" .\" Permission is granted to copy and distribute modified versions of this .\" manual under the conditions for verbatim copying, provided that the .\" entire resulting derived work is distributed under the terms of a .\" permission notice identical to this one. .\" .\" Since the Linux kernel and libraries are constantly changing, this .\" manual page may be incorrect or out-of-date. The author(s) assume no .\" responsibility for errors or omissions, or for damages resulting from .\" the use of the information contained herein. The author(s) may not .\" have taken the same level of care in the production of this manual, .\" which is licensed free of charge, as they might when working .\" professionally. .\" .\" Formatted or processed versions of this manual, if unaccompanied by .\" the source, must acknowledge the copyright and authors of this work. .\" %%%LICENSE_END .\" .\" Modified Sat Jul 24 18:42:59 1993 by Rik Faith (faith@cs.unc.edu) .\"******************************************************************* .\" .\" This file was generated with po4a. Translate the source file. .\" .\"******************************************************************* .TH PUTS 3 "30. April 2018" GNU Linux\-Programmierhandbuch .SH BEZEICHNUNG fputc, fputs, putc, putchar, puts \- Ausgabe von Zeichen und Zeichenketten .SH ÜBERSICHT .nf \fB#include \fP .PP \fBint fputc(int \fP\fIc\fP\fB, FILE *\fP\fIstream\fP\fB);\fP .PP \fBint fputs(const char *\fP\fIs\fP\fB, FILE *\fP\fIstream\fP\fB);\fP .PP \fBint putc(int \fP\fIc\fP\fB, FILE *\fP\fIstream\fP\fB);\fP .PP \fBint putchar(int \fP\fIc\fP\fB);\fP .PP \fBint puts(const char *\fP\fIs\fP\fB);\fP .fi .SH BESCHREIBUNG \fBfputc\fP() schreibt das Zeichen \fIc\fP, umgewandelt in ein \fIunsigned char\fP, in \fIstream\fP. .PP \fBfputs\fP() schreibt die Zeichenkette \fIs\fP ohne sein nachfolgendes Null\-Byte(\(aq\e0\(aq) in \fIstream\fP. .PP \fBputc\fP() entspricht \fBfputc\fP() außer, dass es als ein Makro implementiert sein kann, das \fIstream\fP mehr als einmal auswertet. .PP \fBputchar(\fP\fIc\fP\fB)\fP entspricht \fBputc(\fP\fIc\fP\fB, \fP\fIstdout\fP\fB)\fP. .PP \fBputs\fP() schreibt die Zeichenkette \fIs\fP und einen nachfolgenden Zeilenumbruch in die Standardausgabe \fIstdout\fP. .PP Aufrufe der hier beschriebenen Funktionen können untereinander und mit anderen Aufrufen von Ausgabefunktionen der Bibliothek \fIstdio\fP für den selben Ausgabekanal gemischt werden. .PP Für nicht sperrende Gegenstücke siehe \fBunlocked_stdio\fP(3). .SH RÜCKGABEWERT \fBfputc\fP(), \fBputc\fP() und \fBputchar\fP() geben das als ein \fIunsigned char\fP geschriebene und in ein \fIint\fP umgewandelte Zeichen zurück, oder \fBEOF\fP im Fehlerfall. .PP \fBputs\fP() und \fBfputs\fP() geben bei Erfolg eine nichtnegative Zahl zurück, oder \fBEOF\fP im Fehlerfall. .SH ATTRIBUTE Siehe \fBattributes\fP(7) für eine Erläuterung der in diesem Abschnitt verwandten Ausdrücke. .TS allbox; lbw25 lb lb l l l. Schnittstelle Attribut Wert T{ \fBfputc\fP(), \fBfputs\fP(), \fBputc\fP(), \fBputchar\fP(), \fBputs\fP() T} Multithread\-Fähigkeit MT\-Safe .TE .SH "KONFORM ZU" POSIX.1\-2001, POSIX.1\-2008, C89, C99. .SH FEHLER Es ist nicht ratsam, Aufrufe von Ausgabefunktionen der Bibliothek \fIstdio\fP mit systemnahen Aufrufen von \fBwrite\fP(2) zu vermischen, wenn der Dateideskriptor denselben Ausgabekanal bezeichnet. Die Ergebnisse sind undefiniert und sehr wahrscheinlich nicht die gewünschten. .SH "SIEHE AUCH" \fBwrite\fP(2), \fBferror\fP(3), \fBfgets\fP(3), \fBfopen\fP(3), \fBfputwc\fP(3), \fBfputws\fP(3), \fBfseek\fP(3), \fBfwrite\fP(3), \fBputwchar\fP(3), \fBscanf\fP(3), \fBunlocked_stdio\fP(3) .SH KOLOPHON Diese Seite ist Teil der Veröffentlichung 5.04 des Projekts Linux\-\fIman\-pages\fP. Eine Beschreibung des Projekts, Informationen, wie Fehler gemeldet werden können sowie die aktuelle Version dieser Seite finden sich unter \%https://www.kernel.org/doc/man\-pages/. .SH ÜBERSETZUNG Die deutsche Übersetzung dieser Handbuchseite wurde von Patrick Rother , Dr. Tobias Quathamer und Mario Blättermann erstellt. Diese Übersetzung ist Freie Dokumentation; lesen Sie die .UR https://www.gnu.org/licenses/gpl-3.0.html GNU General Public License Version 3 .UE oder neuer bezüglich der Copyright-Bedingungen. Es wird KEINE HAFTUNG übernommen. Wenn Sie Fehler in der Übersetzung dieser Handbuchseite finden, schicken Sie bitte eine E-Mail an die .MT debian-l10n-german@\:lists.\:debian.\:org Mailingliste der Übersetzer .ME .