Penguin
Annotated edit history of string(3) version 1, including all changes. View license author blame.
Rev Author # Line
1 perry 1 STRING
2 !!!STRING
3 NAME
4 SYNOPSIS
5 DESCRIPTION
6 SEE ALSO
7 ----
8 !!NAME
9
10
11 strcasecmp, strcat, strchr, strcmp, strcoll, strcpy, strcspn, strdup, strfry, strlen, strncat, strncmp, strncpy, strncasecmp, strpbrk, strrchr, strsep, strspn, strstr, strtok, strxfrm, index, rindex - string operations
12 !!SYNOPSIS
13
14
15 __#include
16 __''s1''__, const char *__''s2''__);
17 char *strcat(char *__''dest''__, const char *__''src''__);
18 char *strchr(const char *__''s''__, int__ ''c''__);
19 int strcmp(const char *__''s1''__, const char *__''s2''__);
20 int strcoll(const char *__''s1''__, const char *__''s2''__);
21 char *strcpy(char *__''dest''__, const char *__''src''__);
22 size_t strcspn(const char *__''s''__, const char *__''reject''__);
23 char *strdup(const char *__''s''__);
24 char *strfry(char *__''string''__);
25 size_t strlen(const char *__''s''__);
26 char *strncat(char *__''dest''__, const char *__''src''__, size_t__ ''n''__);
27 int strncmp(const char *__''s1''__, const char *__''s2''__, size_t__ ''n''__);
28 char *strncpy(char *__''dest''__, const char *__''src''__, size_t__ ''n''__);
29 int strncasecmp(const char *__''s1''__, const char *__''s2''__, size_t__ ''n''__);
30 char *strpbrk(const char *__''s''__, const char *__''accept''__);
31 char *strrchr(const char *__''s''__, int__ ''c''__);
32 char *strsep(char **__''stringp''__, const char *__''delim''__);
33 size_t strspn(const char *__''s''__, const char *__''accept''__);
34 char *strstr(const char *__''haystack''__, const char *__''needle''__);
35 char *strtok(char *__''s''__, const char *__''delim''__);
36 size_t strxfrm(char *__''dest''__, const char *__''src''__, size_t__ ''n''__);
37 char *index(const char *__''s''__, int__ ''c''__);
38 char *rindex(const char *__''s''__, int__ ''c''__);
39 __
40 !!DESCRIPTION
41
42
43 The string functions perform string operations on
44 NULL-terminated strings. See the individual man pages for
45 descriptions of each function.
46 !!SEE ALSO
47
48
49 index(3), rindex(3), strcasecmp(3),
50 strcat(3), strchr(3), strcmp(3),
51 strcoll(3), strcpy(3), strcspn(3),
52 strdup(3), strfry(3), strlen(3),
53 strncat(3), strncmp(3), strncpy(3),
54 strncasecmp(3), strpbrk(3), strrchr(3),
55 strsep(3), strspn(3), strstr(3),
56 strtok(3), strxfrm(3)
57 ----
This page is a man page (or other imported legacy content). We are unable to automatically determine the license status of this page.