diff options
author | Joursoir <chat@joursoir.net> | 2021-05-17 08:41:55 +0000 |
---|---|---|
committer | Joursoir <chat@joursoir.net> | 2021-05-17 08:41:55 +0000 |
commit | bbf29455ed723ef4e9be95033e7aca2ea6a72a91 (patch) | |
tree | 7c49780ea6da6fe45c0167cccbcbc06a8edd04ee | |
parent | 58241bc88020e972b7719753c3838a5557ac4d84 (diff) | |
download | ctimeline-bbf29455ed723ef4e9be95033e7aca2ea6a72a91.tar.gz ctimeline-bbf29455ed723ef4e9be95033e7aca2ea6a72a91.tar.bz2 ctimeline-bbf29455ed723ef4e9be95033e7aca2ea6a72a91.zip |
xstring: add char* concatenation, use func for realloc memory
-rw-r--r-- | xstring.c | 25 | ||||
-rw-r--r-- | xstring.h | 1 |
2 files changed, 15 insertions, 11 deletions
@@ -58,19 +58,22 @@ static void string_realloc(string *str, int cap) void string_addch(string *str, int ch)
{
- if(str->capacity <= (str->len + 1)) {
- int i;
- int updated_cap = str->capacity + INIT_LEN_STRING;
- char *tmp_s = str->s;
- str->s = malloc(sizeof(char) * (updated_cap + 1));
- for(i = 0; i < updated_cap; i++)
- str->s[i] = (i >= str->capacity) ? '\0' : tmp_s[i];
-
- str->capacity = updated_cap;
- free(tmp_s);
- }
+ if((str->len + 1) >= str->capacity)
+ string_realloc(str, str->capacity + INIT_LEN_STRING);
str->s[str->len] = ch;
str->len++;
str->s[str->len] = '\0';
}
+
+void string_addstr(string *str, const char *src, size_t src_len)
+{
+ if((str->len + src_len) >= str->capacity)
+ string_realloc(str, str->capacity + src_len);
+
+ while(src_len > 0 && (str->s[str->len] = *src++)) {
+ src_len--;
+ str->len++;
+ }
+ str->s[str->len] = '\0';
+}
@@ -14,5 +14,6 @@ string *string_nalloc(const char *text, size_t text_len); void string_release(string *str); void string_reset(string *str); void string_addch(string *str, int ch); +void string_addstr(string *str, const char *src, size_t src_len); #endif /* CTIMELINE_XSTRING_H */ |