diff options
| author | Aldrik Ramaekers <aldrikboy@gmail.com> | 2025-09-06 11:58:12 +0200 |
|---|---|---|
| committer | Aldrik Ramaekers <aldrikboy@gmail.com> | 2025-09-06 11:58:12 +0200 |
| commit | 68d0ef1586a90ddef6d0cef7ebd593828282c76a (patch) | |
| tree | 6166037ca8a5d5ad168badc7ff5b76510bf05df4 /include/strops.hpp | |
| parent | b970907ef53f1b8367285cbe7c2dc2a7fa47967f (diff) | |
working on invoice templates
Diffstat (limited to 'include/strops.hpp')
| -rw-r--r-- | include/strops.hpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/include/strops.hpp b/include/strops.hpp index 4570a15..2874c4d 100644 --- a/include/strops.hpp +++ b/include/strops.hpp @@ -1,5 +1,9 @@ #pragma once +#include <stdint.h> 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 +void strops_replace(char *buf, size_t buf_size, const char *search, const char *replace); +void strops_replace_int32(char *buf, size_t buf_size, const char *search, int32_t number); +void strops_replace_int64(char *buf, size_t buf_size, const char *search, int64_t number); +void strops_replace_float(char *buf, size_t buf_size, const char *search, float number, int decimals);
\ No newline at end of file |
