21 lines
253 B
Markdown
21 lines
253 B
Markdown
# Fill
|
||
|
||
Fills a string with specified char.
|
||
|
||
```
|
||
bool Fill(
|
||
short character // character
|
||
)
|
||
|
||
```
|
||
|
||
Parameters
|
||
|
||
character
|
||
|
||
[in] Character for filling a string.
|
||
|
||
Return Value
|
||
|
||
true - successful, false - cannot fill a string.
|