diff options
Diffstat (limited to 'common/utils.c')
| -rw-r--r-- | common/utils.c | 85 |
1 files changed, 85 insertions, 0 deletions
diff --git a/common/utils.c b/common/utils.c new file mode 100644 index 0000000..b2b3768 --- /dev/null +++ b/common/utils.c | |||
| @@ -0,0 +1,85 @@ | |||
| 1 | /* | ||
| 2 | * utils.c | ||
| 3 | * Miscellaneous utilities for string manipulation | ||
| 4 | * | ||
| 5 | * Copyright (c) 2013 Federico Mena Quintero | ||
| 6 | * | ||
| 7 | * This library is free software; you can redistribute it and/or | ||
| 8 | * modify it under the terms of the GNU Lesser General Public | ||
| 9 | * License as published by the Free Software Foundation; either | ||
| 10 | * version 2.1 of the License, or (at your option) any later version. | ||
| 11 | * | ||
| 12 | * This library is distributed in the hope that it will be useful, | ||
| 13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
| 15 | * Lesser General Public License for more details. | ||
| 16 | * | ||
| 17 | * You should have received a copy of the GNU Lesser General Public | ||
| 18 | * License along with this library; if not, write to the Free Software | ||
| 19 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA | ||
| 20 | */ | ||
| 21 | |||
| 22 | #ifdef HAVE_CONFIG_H | ||
| 23 | #include <config.h> | ||
| 24 | #endif | ||
| 25 | |||
| 26 | #include <stdarg.h> | ||
| 27 | #include <stdlib.h> | ||
| 28 | #include <string.h> | ||
| 29 | |||
| 30 | #include "utils.h" | ||
| 31 | |||
| 32 | /** | ||
| 33 | * Concatenate strings into a newly allocated string | ||
| 34 | * | ||
| 35 | * @note: Specify NULL for the last string in the varargs list | ||
| 36 | * | ||
| 37 | * @str: The first string in the list | ||
| 38 | * @...: Subsequent strings. Use NULL for the last item. | ||
| 39 | * | ||
| 40 | * @return a newly allocated string, or NULL if @str is NULL. This will also | ||
| 41 | * return NULL and set errno to ENOMEM if memory is exhausted. | ||
| 42 | */ | ||
| 43 | char *string_concat(const char *str, ...) | ||
| 44 | { | ||
| 45 | size_t len; | ||
| 46 | va_list args; | ||
| 47 | char *s; | ||
| 48 | char *result; | ||
| 49 | char *dest; | ||
| 50 | |||
| 51 | if (!str) | ||
| 52 | return NULL; | ||
| 53 | |||
| 54 | /* Compute final length */ | ||
| 55 | |||
| 56 | len = strlen(str) + 1; /* plus 1 for the null terminator */ | ||
| 57 | |||
| 58 | va_start(args, str); | ||
| 59 | s = va_arg(args, char *); | ||
| 60 | while (s) { | ||
| 61 | len += strlen(s); | ||
| 62 | s = va_arg(args, char*); | ||
| 63 | } | ||
| 64 | va_end(args); | ||
| 65 | |||
| 66 | /* Concat each string */ | ||
| 67 | |||
| 68 | result = malloc(len); | ||
| 69 | if (!result) | ||
| 70 | return NULL; /* errno remains set */ | ||
| 71 | |||
| 72 | dest = result; | ||
| 73 | |||
| 74 | dest = stpcpy(dest, str); | ||
| 75 | |||
| 76 | va_start(args, str); | ||
| 77 | s = va_arg(args, char *); | ||
| 78 | while (s) { | ||
| 79 | dest = stpcpy(dest, s); | ||
| 80 | s = va_arg(args, char *); | ||
| 81 | } | ||
| 82 | va_end(args); | ||
| 83 | |||
| 84 | return result; | ||
| 85 | } | ||
