.\" -*- coding: UTF-8 -*- .\" Copyright 1993 David Metcalfe (david@prism.demon.co.uk) .\" .\" 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. .\" .\" References consulted: .\" Linux libc source code .\" Lewine's _POSIX Programmer's Guide_ (O'Reilly & Associates, 1991) .\" 386BSD man pages .\" Modified Sun Jul 25 10:54:31 1993, Rik Faith (faith@cs.unc.edu) .\"******************************************************************* .\" .\" This file was generated with po4a. Translate the source file. .\" .\"******************************************************************* .TH STRING 3 "25. Februar 2010" "" Linux\-Programmierhandbuch .SH BEZEICHNUNG stpcpy, strcasecmp, strcat, strchr, strcmp, strcoll, strcpy, strcspn, strdup, strfry, strlen, strncat, strncmp, strncpy, strncasecmp, strpbrk, strrchr, strsep, strspn, strstr, strtok, strxfrm, index, rindex \- Zeichenkettenoperationen .SH ÜBERSICHT .nf \fB#include \fP .sp \fBint strcasecmp(const char *\fP\fIs1\fP\fB, const char *\fP\fIs2\fP\fB);\fP .sp \fBint strncasecmp(const char *\fP\fIs1\fP\fB, const char *\fP\fIs2\fP\fB, size_t \fP\fIn\fP\fB);\fP .sp \fBchar *index(const char *\fP\fIs\fP\fB, int \fP\fIc\fP\fB);\fP .sp \fBchar *rindex(const char *\fP\fIs\fP\fB, int \fP\fIc\fP\fB);\fP .sp \fB#include \fP .sp \fBchar *stpcpy(char *\fP\fIziel\fP\fB, const char *\fP\fIquelle\fP\fB);\fP .sp \fBchar *strcat(char *\fP\fIziel\fP\fB, const char *\fP\fIquelle\fP\fB);\fP .sp \fBchar *strchr(const char *\fP\fIs\fP\fB, int \fP\fIc\fP\fB);\fP .sp \fBint strcmp(const char *\fP\fIs1\fP\fB, const char *\fP\fIs2\fP\fB);\fP .sp \fBint strcoll(const char *\fP\fIs1\fP\fB, const char *\fP\fIs2\fP\fB);\fP .sp \fBchar *strcpy(char *\fP\fIziel\fP\fB, const char *\fP\fIquelle\fP\fB);\fP .sp \fBsize_t strcspn(const char *\fP\fIs\fP\fB, const char *\fP\fIablehnen\fP\fB);\fP .sp \fBchar *strdup(const char *\fP\fIs\fP\fB);\fP .sp \fBchar *strfry(char *\fP\fIzeichenkette\fP\fB);\fP .sp \fBsize_t strlen(const char *\fP\fIs\fP\fB);\fP .sp \fBchar *strncat(char *\fP\fIziel\fP\fB, const char *\fP\fIquelle\fP\fB,\fP \fB size_t \fP\fIn\fP\fB);\fP .sp \fBint strncmp(const char *\fP\fIs1\fP\fB, const char *\fP\fIs2\fP\fB, size_t \fP\fIn\fP\fB);\fP .sp \fBchar *strncpy(char *\fP\fIziel\fP\fB, const char *\fP\fIquelle\fP\fB,\fP \fB size_t \fP\fIn\fP\fB);\fP .sp \fBchar *strpbrk(const char *\fP\fIs\fP\fB, const char *\fP\fIakzeptieren\fP\fB);\fP .sp \fBchar *strrchr(const char *\fP\fIs\fP\fB, int \fP\fIc\fP\fB);\fP .sp \fBchar *strsep(char **\fP\fIstringp\fP\fB, const char *\fP\fIdelim\fP\fB);\fP .sp \fBsize_t strspn(const char *\fP\fIs\fP\fB, const char *\fP\fIakzeptieren\fP\fB);\fP .sp \fBchar *strstr(const char *\fP\fIheuhaufen\fP\fB, const char *\fP\fInadel\fP\fB);\fP .sp \fBchar *strtok(char *\fP\fIs\fP\fB, const char *\fP\fIdelim\fP\fB);\fP .sp \fBsize_t strxfrm(char *\fP\fIziel\fP\fB, const char *\fP\fIquelle\fP\fB,\fP \fB size_t \fP\fIn\fP\fB);\fP .fi .SH BESCHREIBUNG Die Zeichenkettenfunktionen führen Operationen an Null\-terminierten Zeichenketten durch. Siehe dazu die einzelnen Handbuchseiten, um Beschreibungen der einzelnen Funktionen zu erhalten. .SH "SIEHE AUCH" \fBindex\fP(3), \fBrindex\fP(3), \fBstpcpy\fP(3), \fBstrcasecmp\fP(3), \fBstrcat\fP(3), \fBstrchr\fP(3), \fBstrcmp\fP(3), \fBstrcoll\fP(3), \fBstrcpy\fP(3), \fBstrcspn\fP(3), \fBstrdup\fP(3), \fBstrfry\fP(3), \fBstrlen\fP(3), \fBstrncasecmp\fP(3), \fBstrncat\fP(3), \fBstrncmp\fP(3), \fBstrncpy\fP(3), \fBstrpbrk\fP(3), \fBstrrchr\fP(3), \fBstrsep\fP(3), \fBstrspn\fP(3), \fBstrstr\fP(3), \fBstrtok\fP(3), \fBstrxfrm\fP(3) .SH KOLOPHON Diese Seite ist Teil der Veröffentlichung 3.42 des Projekts Linux\-\fIman\-pages\fP. Eine Beschreibung des Projekts und Informationen, wie Fehler gemeldet werden können, finden sich unter http://www.kernel.org/doc/man\-pages/. .SH ÜBERSETZUNG Die deutsche Übersetzung dieser Handbuchseite wurde von Patrick Rother und Chris Leick erstellt. Diese Übersetzung ist Freie Dokumentation; lesen Sie die GNU General Public License Version 3 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 .