table of contents
other sections
STRSET(3pub) | C Programmer's Manual | STRSET(3pub) |
NAME¶
strset - set all characters in a string to a given character
SYNOPSIS¶
#include <publib.h> char *strset(char *str, int c);
DESCRIPTION¶
strset will set all characters (before the terminating '\0') in the string str to c.
RETURN VALUE¶
strset returns its first argument.
SEE ALSO¶
AUTHOR¶
Lars Wirzenius (lars.wirzenius@helsinki.fi)
C Programmer's Manual | Publib |