From 78e51a8c6678b6e3dff3d619aa786669f531f4bc Mon Sep 17 00:00:00 2001 From: rsc Date: Fri, 14 Jan 2005 03:45:44 +0000 Subject: checkpoint --- man/man3/runestrcat.html | 107 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 107 insertions(+) create mode 100644 man/man3/runestrcat.html (limited to 'man/man3/runestrcat.html') diff --git a/man/man3/runestrcat.html b/man/man3/runestrcat.html new file mode 100644 index 00000000..4774265c --- /dev/null +++ b/man/man3/runestrcat.html @@ -0,0 +1,107 @@ + +runestrcat(3) - Plan 9 from User Space + + + + +
+
+
RUNESTRCAT(3)RUNESTRCAT(3) +
+
+

NAME
+ +
+ + runestrcat, runestrncat, runestrcmp, runestrncmp, runestrcpy, + runestrncpy, runestrecpy, runestrlen, runestrchr, runestrrchr, + runestrdup, runestrstr – rune string operations
+ +
+

SYNOPSIS
+ +
+ + #include <u.h>
+ #include <libc.h> +
+
+ Rune* runestrcat(Rune *s1, Rune *s2) +
+
+ Rune* runestrncat(Rune *s1, Rune *s2, long n) +
+
+ int     runestrcmp(Rune *s1, Rune *s2) +
+
+ int     runestrncmp(Rune *s1, Rune *s2, long n) +
+
+ Rune* runestrcpy(Rune *s1, Rune *s2) +
+
+ Rune* runestrncpy(Rune *s1, Rune *s2, long n) +
+
+ Rune* runestrecpy(Rune *s1, Rune *es1, Rune *s2) +
+
+ long    runestrlen(Rune *s) +
+
+ Rune* runestrchr(Rune *s, Rune c) +
+
+ Rune* runestrrchr(Rune *s, Rune c) +
+
+ Rune* runestrdup(Rune *s) +
+
+ Rune* runestrstr(Rune *s1, Rune *s2)
+
+
+

DESCRIPTION
+ +
+ + These functions are rune string analogues of the corresponding + functions in strcat(3).
+ +
+

SOURCE
+ +
+ + /usr/local/plan9/src/lib9
+
+
+

SEE ALSO
+ +
+ + memory(3), rune(3), strcat(3)
+ +
+

BUGS
+ +
+ + The outcome of overlapping moves varies among implementations.
+ +
+ +

+
+
+ + +
+
+
+Space Glenda +
+
+ + -- cgit v1.2.3