An ACS library for ZDoom-based ports
str StrRepeat(str s, int n)
Returns the string repeated n times. If n is 0, returns empty string.
StrRepeat("abc", 3) -> "abcabcabc" StrRepeat("abc", 0) -> "" StrRepeat("abc", 1) -> "abc"