Changes by last author:

Added:
= strset =

== Syntax ==

:string strset(string str, int c)

== Arguments ==

:str

::The string to set

== Return ==

:A pointer to the new string.

== Description ==

:strnset sets all characters of string str to c (converted to a char).

== Example ==

<code>

int s = strcpy(&str0, "This is the message!");

s = strset(s + strlen(str3) - 1, NULL);

Info("%s", s);

</code>

== Also see ==

:strnset