source: trunk/minix/man/man3/string.3@ 9

Last change on this file since 9 was 9, checked in by Mattia Monga, 13 years ago

Minix 3.1.2a

File size: 3.3 KB
Line 
1.\" Copyright (c) 1980 Regents of the University of California.
2.\" All rights reserved. The Berkeley software License Agreement
3.\" specifies the terms and conditions for redistribution.
4.\"
5.\" @(#)string.3 6.1 (Berkeley) 5/15/85
6.\"
7.TH STRING 3 "May 15, 1985"
8.UC 4
9.SH NAME
10string, strcat, strncat, strcmp, strncmp, strcpy, strncpy, strlen, strchr, strrchr, strerror, memcmp, memcpy, memmove, memchr, memset, index, rindex \- string operations
11.SH SYNOPSIS
12.nf
13.ft B
14#include <string.h>
15
16char *strcat(char *\fIs1\fP, const char *\fIs2\fP)
17char *strncat(char *\fIs1\fP, const char *\fIs2\fP, size_t \fIn\fP)
18int strcmp(const char *\fIs1\fP, const char *\fIs2\fP)
19int strncmp(const char *\fIs1\fP, const char *\fIs2\fP, size_t \fIn\fP)
20char *strcpy(char *\fIs1\fP, const char *\fIs2\fP)
21char *strncpy(char *\fIs1\fP, const char *\fIs2\fP, size_t \fIn\fP)
22size_t strlen(const char *\fIs\fP)
23char *strchr(const char *\fIs\fP, int \fIc\fP)
24char *strrchr(const char *\fIs\fP, int \fIc\fP)
25char *strerror(int \fIerrnum\fP)
26int memcmp(const void *\fIs1\fP, const void *\fIs2\fP, size_t \fIn\fP)
27void *memcpy(void *\fIs1\fP, const void *\fIs2\fP, size_t \fIn\fP)
28void *memmove(void *\fIs1\fP, const void *\fIs2\fP, size_t \fIn\fP)
29void *memchr(const void *\fIs\fP, int \fIc\fP, size_t \fIn\fP)
30void *memset(void *\fIs\fP, int \fIc\fP, size_t \fIn\fP)
31char *index(const char *\fIs\fP, int \fIc\fP)
32char *rindex(const char *\fIs\fP, int \fIc\fP)
33.ft R
34.fi
35.SH DESCRIPTION
36These functions operate on null-terminated strings.
37They do not check for overflow of any receiving string.
38.PP
39.B Strcat
40appends a copy of string
41.I s2
42to the end of string
43.IR s1 .
44.B Strncat
45copies at most
46.I n
47characters. Both return a pointer to the null-terminated result.
48.PP
49.B Strcmp
50compares its arguments and returns an integer
51greater than, equal to, or less than 0, according as
52.I s1
53is lexicographically greater than, equal to, or less than
54.IR s2 .
55.B Strncmp
56makes the same comparison but looks at at most
57.I n
58characters.
59.PP
60.B Strcpy
61copies string
62.I s2
63to
64.IR s1 ,
65stopping after the null character has been moved.
66.B Strncpy
67copies exactly
68.I n
69characters, truncating or null-padding
70.I s2;
71the target may not be null-terminated if the length of
72.I s2
73is
74.I n
75or more. Both return
76.IR s1 .
77.PP
78.B Strlen
79returns the number of non-null characters in
80.IR s .
81.PP
82.B Strchr
83.RB ( strrchr )
84returns a pointer to the first (last) occurrence of character
85.I c
86in string
87.I s,
88or null if
89.I c
90does not occur in the string.
91.PP
92.B Strerror
93returns the error string for the system call error
94.IR errnum .
95See
96.BR intro (2).
97.PP
98.B Memcmp
99is like
100.B strcmp
101except that the strings are memory blocks of length
102.IR n .
103Null characters are treated as ordinary characters.
104.PP
105.B Memcpy
106copies
107.I n
108bytes from the location pointed to by
109.I s2
110to
111.IR s1 .
112.B Memmove
113is like memcpy, except that it can handle overlap between the two strings.
114Both functions return
115.IR s1 .
116.PP
117.B Memchr
118returns a pointer to the first occurrence of character
119.I c
120in string
121.I s,
122or null if
123.I c
124does not occur in the string.
125.PP
126.B Memset
127sets
128.I n
129bytes to
130.I c
131starting at location
132.IR s .
133It returns
134.IR s .
135.PP
136.B Index
137and
138.B rindex
139are obsolete versions of
140.B strchr
141and
142.BR strrchr .
143New code should avoid using them.
144.SH NOTES
145Characters are compared as
146.BR "unsigned char" ,
147whether
148.B char
149itself is signed or not.
Note: See TracBrowser for help on using the repository browser.