Older Newer
Tue, 10 Dec 2019 03:12:29 . . . . SyneRyder [First function definition]


Changes by last author:

Added:
= appendEllipsis =

== Syntax ==

char* appendEllipsis(char* s)

== Arguments ==

:s

::The text that will have an ellipsis appended.

== Description ==

Returns string s with an ellipsis ("...") appended.

== Example ==

<code>

%fml

ctl[4]: STATICTEXT, Text=""

OnFilterStart: {

strcpy(str0, "Waiting");

strcpy(str1, appendEllipsis(str0));

setCtlText(4, str1);

return true;

}

</code>

== See Also ==

formatString, stripEllipsis