Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2013-07-13 | common: Implement stpcpy() replacement for systems lacking it | Martin Szulecki | 1 | -0/+23 | |
2013-07-02 | common: Add utils.[ch] with a string_concat() function | Federico Mena Quintero | 1 | -0/+85 | |
Instead of doing malloc() and repeated strcat(), which is an O(n^2) way to concatenate multiple strings, we define a single O(total_len) function that uses stpcpy(). This will also make the rest of the code more legible and safer. |