diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2024-09-14 14:05:46 -0400 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2024-09-14 14:05:46 -0400 |
commit | 9bb28ab3be23aa486cff6ce024a88e7b3e343fa4 (patch) | |
tree | 6b5f62dd6eb2f476c29af19cff75a57042c400f9 /src/dstring.h | |
parent | 170aa3df69a64544ef5fcc24ac22de1aa7303562 (diff) | |
download | bfs-9bb28ab3be23aa486cff6ce024a88e7b3e343fa4.tar.xz |
dstring: New dstrepeat() function
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 |