From 7e0f021a9aec35fd8e6725e87e3313b101d26f5e Mon Sep 17 00:00:00 2001 From: Tobias Klauser Date: Sun, 27 Jan 2008 11:37:44 +0100 Subject: Initial import (2.0.2-6) --- reference/C/MAN/index.htm | 103 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 103 insertions(+) create mode 100644 reference/C/MAN/index.htm (limited to 'reference/C/MAN/index.htm') diff --git a/reference/C/MAN/index.htm b/reference/C/MAN/index.htm new file mode 100644 index 0000000..e674e42 --- /dev/null +++ b/reference/C/MAN/index.htm @@ -0,0 +1,103 @@ +index + +
+
+
+
+
+

INDEX(3) Linux Programmer's Manual INDEX(3) +

+ +

NAME +

index, rindex - locate character in string + +

SYNOPSIS +

#include <string.h> + + char *index(const char *s, int c); + + char *rindex(const char *s, int c); + +

DESCRIPTION +

The index() function returns a pointer to the first occur- + rence of the character c in the string s. + + The rindex() function returns a pointer to the last occur- + rence of the character c in the string s. + + The terminating NULL character is considered to be a part + of the strings. + +

RETURN VALUE +

The index() and rindex() functions return a pointer to the + matched character or NULL if the character is not found. + +

CONFORMING TO +

BSD 4.3 + +
+
+

SEE ALSO +

+memchr, +strchr, +strpbrk, +strrchr, +strsep, +strspn, +strstr, +strtok, +

+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+

GNU April 12, 1993 1 +

+ +
+

+


+

+

+ + + + +
+Top + +Master Index + +Keywords + +Functions +
+
+

+


+ +This manual page was brought to you by mjl_man V-2.0 -- cgit v1.2.3-54-g00ecf