aboutsummaryrefslogtreecommitdiff
path: root/src/strlist.c
Commit message (Collapse)AuthorAgeFilesLines
* Fix strlist_remove functionJoseph Hunkeler2024-06-131-12/+6
|
* Fix filename assignment in is_url modeJoseph Hunkeler2024-06-091-5/+2
|
* Address shortcomings and bugs flushed out by unit testsJoseph Hunkeler2024-06-091-30/+202
|
* Remove unused variableJoseph Hunkeler2024-04-021-1/+0
|
* Changes to strlist_*() functions:Joseph Hunkeler2024-04-021-40/+52
| | | | | Functions that modify the input StrList have been refactored to use `struct StrList **` instead of `struct StrList *`. * Fixes realloc error handling
* Replace free() with guard_* macrosJoseph Hunkeler2024-03-221-6/+6
|
* Remove unused pointerJoseph Hunkeler2024-03-221-5/+0
|
* Fix realloc error handlingJoseph Hunkeler2024-03-221-1/+2
|
* Use GENERIC_ARRAY_FREE instead of split_free()Joseph Hunkeler2024-03-221-1/+1
|
* Use do/while in guard_* macros to make them behave more like functionsJoseph Hunkeler2024-03-101-3/+3
|
* guard_free() all pointersJoseph Hunkeler2023-12-101-3/+3
|
* Remove unused variablesJoseph Hunkeler2023-11-201-4/+0
|
* Fixes potential double-free conditionJoseph Hunkeler2023-10-311-2/+7
| | | | | * Only free pStrList->data[i] and pStrList->data if they are not NULL * Free tokenized string after append
* Initial commitJoseph Hunkeler2023-10-261-0/+483