mirror of
https://github.com/vlang/v.git
synced 2025-09-15 15:32:27 +03:00
14 lines
223 B
V
14 lines
223 B
V
module strings
|
|
|
|
pub fn repeat(c byte, n int) string {
|
|
if n <= 0 {
|
|
return ''
|
|
}
|
|
mut arr := malloc(n + 1)
|
|
//mut arr := [byte(0); n + 1]
|
|
for i := 0; i < n; i++ {
|
|
arr[i] = c
|
|
}
|
|
arr[n] = `\0`
|
|
return string(arr, n)
|
|
}
|