diff options
| author | Soikk | 2022-08-09 02:04:02 +0200 |
|---|---|---|
| committer | Soikk | 2022-08-09 02:04:02 +0200 |
| commit | 32dd785f881cf3ba6c1c6806cd3af3cbf56437c4 (patch) | |
| tree | b8ce805c52ae07b8b57819644f4c3b137d361fa3 /include/str.h | |
| parent | ae0921866fb49aadea65b8057ab000d42e75f24c (diff) | |
| download | soikk-DB-32dd785f881cf3ba6c1c6806cd3af3cbf56437c4.tar.xz soikk-DB-32dd785f881cf3ba6c1c6806cd3af3cbf56437c4.tar.zst | |
Improved database name system.
Diffstat (limited to 'include/str.h')
| -rw-r--r-- | include/str.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/str.h b/include/str.h index 999f1e3..7f51996 100644 --- a/include/str.h +++ b/include/str.h @@ -12,6 +12,10 @@ char *normalizeStr(const char *str, uint32_t *ln); char *normalizeStrLimit(const char *str, uint32_t *l, uint32_t limit); +char *trimStr(const char *str, uint32_t *l); + +char *trimStrLimit(const char *str, uint32_t *l, uint32_t limit); + ssize_t strInTags(const char *tags, int n, const char *ndl, int m, char sep); #endif |
