diff options
author | Mattias Andrée <maandree@kth.se> | 2018-11-25 14:28:44 +0100 |
---|---|---|
committer | Mattias Andrée <maandree@kth.se> | 2018-11-25 14:28:44 +0100 |
commit | 9ada22a691e6a36e4237388e2217d09074266bdb (patch) | |
tree | 116763aa5d520cd113e51935ae7282018f0873a2 /man3 | |
parent | Fix consistence in memelem functions (diff) | |
download | libsimple-9ada22a691e6a36e4237388e2217d09074266bdb.tar.gz libsimple-9ada22a691e6a36e4237388e2217d09074266bdb.tar.bz2 libsimple-9ada22a691e6a36e4237388e2217d09074266bdb.tar.xz |
Add man pages for {str,stp}[n]set
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to '')
l--------- | man3/libsimple_stpnset.3 | 1 | ||||
l--------- | man3/libsimple_stpset.3 | 1 | ||||
-rw-r--r-- | man3/libsimple_strnset.3 | 93 | ||||
-rw-r--r-- | man3/libsimple_strset.3 | 89 |
4 files changed, 184 insertions, 0 deletions
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 <libsimple.h> + +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 <libsimple.h> + +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) |