diff options
| author | Mikhail Romanko <me@blankhex.com> | 2025-11-08 11:02:01 +0300 |
|---|---|---|
| committer | Mikhail Romanko <me@blankhex.com> | 2025-11-08 11:02:01 +0300 |
| commit | 44057e96f33f110cf182ef7df697b21e779e5aae (patch) | |
| tree | 6c19be88e92179568db442ffe2f77f068fada753 /include/BH/String.h | |
| parent | d559d3f66b2c81869d292c513c942bb966881244 (diff) | |
| download | bhlib-44057e96f33f110cf182ef7df697b21e779e5aae.tar.gz | |
Add string duplication function (strdup)
Diffstat (limited to 'include/BH/String.h')
| -rw-r--r-- | include/BH/String.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/BH/String.h b/include/BH/String.h index 5e1ceb7..4ef0c33 100644 --- a/include/BH/String.h +++ b/include/BH/String.h @@ -113,4 +113,7 @@ uint64_t BH_StringToInt64u(const char *string, int base); +char *BH_StringDup(const char *string); + + #endif /* BH_STRING_H */ |
