diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2020-02-04 11:50:49 -0500 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2020-02-04 15:29:29 -0500 |
commit | 7cb43a7996afa4a2a2578f1ce3302866bb79f55b (patch) | |
tree | ce3cc3be77fef5a34763a062ca5b776bee87f890 /src | |
parent | abc714e9a5dc047e768562e207b95a4991c27516 (diff) | |
download | spmc-7cb43a7996afa4a2a2578f1ce3302866bb79f55b.tar.gz |
Initial commit of strlist.[c,h]
Diffstat (limited to 'src')
-rw-r--r-- | src/strlist.c | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/src/strlist.c b/src/strlist.c index ccd1925..5f93201 100644 --- a/src/strlist.c +++ b/src/strlist.c @@ -140,6 +140,30 @@ size_t strlist_count(StrList *pStrList) { } /** + * Set value at index + * @param pStrList + * @param value string + * @return + */ +void strlist_set(StrList *pStrList, size_t index, char *value) { + char *tmp = NULL; + char *item = NULL; + if (index > strlist_count(pStrList)) { + return; + } + if ((item = strlist_item(pStrList, index)) == NULL) { + return; + } + if ((tmp = realloc(pStrList->data[index], strlen(value) + 1)) == NULL) { + perror("realloc strlist_set replacement value"); + return; + } + pStrList->data[index] = tmp; + memset(pStrList->data[index], '\0', strlen(value) + 1); + strncpy(pStrList->data[index], value, strlen(value)); +} + +/** * Retrieve data from a `StrList` * @param pStrList * @param index |