diff options
Diffstat (limited to 'include/strops.hpp')
| -rw-r--r-- | include/strops.hpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/include/strops.hpp b/include/strops.hpp index 08dbd5a..4570a15 100644 --- a/include/strops.hpp +++ b/include/strops.hpp @@ -1,4 +1,5 @@ #pragma once -size_t strops_copy(char *dst, const char *src, size_t size); -char* strops_stristr(char* a, char* b);
\ No newline at end of file +size_t strops_copy(char *dst, const char *src, size_t size); +char* strops_stristr(char* a, char* b); +void strops_replace(char *buf, size_t buf_size, const char *search, const char *replace);
\ No newline at end of file |
