2003-09-30 17:47:41 +00:00
|
|
|
.TH RUNESTRCAT 3
|
|
|
|
.SH NAME
|
|
|
|
runestrcat,
|
|
|
|
runestrncat,
|
|
|
|
runestrcmp,
|
|
|
|
runestrncmp,
|
|
|
|
runestrcpy,
|
|
|
|
runestrncpy,
|
|
|
|
runestrecpy,
|
|
|
|
runestrlen,
|
|
|
|
runestrchr,
|
|
|
|
runestrrchr,
|
|
|
|
runestrdup,
|
|
|
|
runestrstr \- rune string operations
|
|
|
|
.SH SYNOPSIS
|
2004-04-10 18:53:55 +00:00
|
|
|
.B #include <u.h>
|
|
|
|
.br
|
|
|
|
.B #include <libc.h>
|
2003-09-30 17:47:41 +00:00
|
|
|
.PP
|
|
|
|
.ta \w'\fLRune* \fP'u
|
|
|
|
.B
|
|
|
|
Rune* runestrcat(Rune *s1, Rune *s2)
|
|
|
|
.PP
|
|
|
|
.B
|
|
|
|
Rune* runestrncat(Rune *s1, Rune *s2, long n)
|
|
|
|
.PP
|
|
|
|
.B
|
|
|
|
int runestrcmp(Rune *s1, Rune *s2)
|
|
|
|
.PP
|
|
|
|
.B
|
|
|
|
int runestrncmp(Rune *s1, Rune *s2, long n)
|
|
|
|
.PP
|
|
|
|
.B
|
|
|
|
Rune* runestrcpy(Rune *s1, Rune *s2)
|
|
|
|
.PP
|
|
|
|
.B
|
|
|
|
Rune* runestrncpy(Rune *s1, Rune *s2, long n)
|
|
|
|
.PP
|
|
|
|
.B
|
|
|
|
Rune* runestrecpy(Rune *s1, Rune *es1, Rune *s2)
|
|
|
|
.PP
|
|
|
|
.B
|
|
|
|
long runestrlen(Rune *s)
|
|
|
|
.PP
|
|
|
|
.B
|
|
|
|
Rune* runestrchr(Rune *s, Rune c)
|
|
|
|
.PP
|
|
|
|
.B
|
|
|
|
Rune* runestrrchr(Rune *s, Rune c)
|
|
|
|
.PP
|
|
|
|
.B
|
|
|
|
Rune* runestrdup(Rune *s)
|
|
|
|
.PP
|
|
|
|
.B
|
|
|
|
Rune* runestrstr(Rune *s1, Rune *s2)
|
|
|
|
.SH DESCRIPTION
|
|
|
|
These functions are rune string analogues of
|
|
|
|
the corresponding functions in
|
2020-08-14 03:41:59 +00:00
|
|
|
.IM strcat (3) .
|
2004-04-10 18:53:55 +00:00
|
|
|
.SH SOURCE
|
2005-01-11 17:37:33 +00:00
|
|
|
.B \*9/src/lib9
|
2003-09-30 17:47:41 +00:00
|
|
|
.SH SEE ALSO
|
2020-08-14 03:41:59 +00:00
|
|
|
.IM memory (3) ,
|
|
|
|
.IM rune (3) ,
|
|
|
|
.IM strcat (3)
|
2003-09-30 17:47:41 +00:00
|
|
|
.SH BUGS
|
|
|
|
The outcome of overlapping moves varies among implementations.
|