From 9ada22a691e6a36e4237388e2217d09074266bdb Mon Sep 17 00:00:00 2001 From: Mattias Andrée Date: Sun, 25 Nov 2018 14:28:44 +0100 Subject: Add man pages for {str,stp}[n]set MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Mattias Andrée --- man3/libsimple_stpnset.3 | 1 + man3/libsimple_stpset.3 | 1 + man3/libsimple_strnset.3 | 93 ++++++++++++++++++++++++++++++++++++++++++++++++ man3/libsimple_strset.3 | 89 +++++++++++++++++++++++++++++++++++++++++++++ 4 files changed, 184 insertions(+) create mode 120000 man3/libsimple_stpnset.3 create mode 120000 man3/libsimple_stpset.3 create mode 100644 man3/libsimple_strnset.3 create mode 100644 man3/libsimple_strset.3 (limited to 'man3') diff --git a/man3/libsimple_stpnset.3 b/man3/libsimple_stpnset.3 new file mode 120000 index 0000000..0e4427d --- /dev/null +++ b/man3/libsimple_stpnset.3 @@ -0,0 +1 @@ +libsimple_strnset.3 \ No newline at end of file diff --git a/man3/libsimple_stpset.3 b/man3/libsimple_stpset.3 new file mode 120000 index 0000000..dc775b8 --- /dev/null +++ b/man3/libsimple_stpset.3 @@ -0,0 +1 @@ +libsimple_strset.3 \ No newline at end of file diff --git a/man3/libsimple_strnset.3 b/man3/libsimple_strnset.3 new file mode 100644 index 0000000..3807917 --- /dev/null +++ b/man3/libsimple_strnset.3 @@ -0,0 +1,93 @@ +.TH LIBSIMPLE_STRNSET 3 2018-11-25 libsimple +.SH NAME +libsimple_strnset, libsimple_stpnset \- fill a string with a character +.SH SYNOPSIS +.nf +#include + +static inline char *libsimple_strnset(char *\fIs\fP, int \fIc\fP, size_t \fIn\fP); +static inline char *libsimple_stpnset(char *\fIs\fP, int \fIc\fP, size_t \fIn\fP); + +#ifndef strnset +# define strnset libsimple_strnset +#endif +#ifndef stpnset +# define stpnset libsimple_stpnset +#endif +.fi +.PP +Link with +.IR \-lsimple . +.SH DESCRIPTION +The +.BR libsimple_strnset () +and +.BR libsimple_stpnset () +functions replace the +.I n +characters in the string +.I s +(or all characters if +.I s +is shorter) with the character +.IR c . +.SH RETURN VALUE +The +.BR libsimple_strnset () +function returns the pointer +.IR s . +The +.BR libsimple_strnset () +function returns the end of +.I s +(that is +.IR &s[strnlen(s,n)] , +as evaluated before the function call. +.SH ERRORS +The +.BR libsimple_strnset () +and +.BR libsimple_stpnset () +functions cannot fail. +.SH ATTRIBUTES +For an explanation of the terms used in this section, see +.BR attributes (7). +.TS +allbox; +lb lb lb +l l l. +Interface Attribute Value +T{ +.BR libsimple_strnset (), +.br +.BR libsimple_stpnset () +T} Thread safety MT-Safe +T{ +.BR libsimple_strnset (), +.br +.BR libsimple_stpnset () +T} Async-signal safety AS-Safe +T{ +.BR libsimple_strnset (), +.br +.BR libsimple_stpnset () +T} Async-cancel safety AC-Safe +.TE +.SH EXAMPLES +None. +.SH APPLICATION USAGE +None. +.SH RATIONALE +None. +.SH FUTURE DIRECTIONS +None. +.SH NOTES +None. +.SH BUGS +None. +.SH SEE ALSO +.BR libsimple_strset (3), +.BR libsimple_mempset (3), +.BR strncpy (3), +.BR stpncpy (3), +.BR memset (3) diff --git a/man3/libsimple_strset.3 b/man3/libsimple_strset.3 new file mode 100644 index 0000000..d504edf --- /dev/null +++ b/man3/libsimple_strset.3 @@ -0,0 +1,89 @@ +.TH LIBSIMPLE_STRSET 3 2018-11-25 libsimple +.SH NAME +libsimple_strset, libsimple_stpset \- fill a string with a character +.SH SYNOPSIS +.nf +#include + +static inline char *libsimple_strset(char *\fIs\fP, int \fIc\fP); +static inline char *libsimple_stpset(char *\fIs\fP, int \fIc\fP); + +#ifndef strset +# define strset libsimple_strset +#endif +#ifndef stpset +# define stpset libsimple_stpset +#endif +.fi +.PP +Link with +.IR \-lsimple . +.SH DESCRIPTION +The +.BR libsimple_strset () +and +.BR libsimple_stpset () +functions replace all characters in the string +.I s +with the character +.IR c . +.SH RETURN VALUE +The +.BR libsimple_strset () +function returns the pointer +.IR s . +The +.BR libsimple_strset () +function returns the end of +.I s +(that is +.IR &s[strlen(s)] , +as evaluated before the function call. +.SH ERRORS +The +.BR libsimple_strset () +and +.BR libsimple_stpset () +functions cannot fail. +.SH ATTRIBUTES +For an explanation of the terms used in this section, see +.BR attributes (7). +.TS +allbox; +lb lb lb +l l l. +Interface Attribute Value +T{ +.BR libsimple_strset (), +.br +.BR libsimple_stpset () +T} Thread safety MT-Safe +T{ +.BR libsimple_strset (), +.br +.BR libsimple_stpset () +T} Async-signal safety AS-Safe +T{ +.BR libsimple_strset (), +.br +.BR libsimple_stpset () +T} Async-cancel safety AC-Safe +.TE +.SH EXAMPLES +None. +.SH APPLICATION USAGE +None. +.SH RATIONALE +None. +.SH FUTURE DIRECTIONS +None. +.SH NOTES +None. +.SH BUGS +None. +.SH SEE ALSO +.BR libsimple_strnset (3), +.BR libsimple_mempset (3), +.BR strcpy (3), +.BR stpcpy (3), +.BR memset (3) -- cgit v1.2.3-70-g09d2