strset - set all characters in a string to a given character
Contents
Description
strset will set all characters (before the terminating '\0') in the string str to c.
Name
strset - set all characters in a string to a given character
Return Value
strset returns its first argument.
See Also
publib(3), memset(3)
Synopsis
#include <publib.h>
char *strset(char *str, int c);
