diff options
Diffstat (limited to 'src/dstring.h')
-rw-r--r-- | src/dstring.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/dstring.h b/src/dstring.h index 6d50bc8..79458e4 100644 --- a/src/dstring.h +++ b/src/dstring.h @@ -320,4 +320,9 @@ int dstrescat(dchar **dest, const char *str, enum wesc_flags flags); */ int dstrnescat(dchar **dest, const char *str, size_t n, enum wesc_flags flags); +/** + * Repeat a string n times. + */ +dchar *dstrepeat(const char *str, size_t n); + #endif // BFS_DSTRING_H |