new_str           607 lib/ais/utils.c     char *new_str = NULL;
new_str           613 lib/ais/utils.c     ais_malloc0(new_str, (len));
new_str           614 lib/ais/utils.c     sprintf(new_str, "%s%c%s", prefix, join, suffix);
new_str           615 lib/ais/utils.c     new_str[len - 1] = 0;
new_str           616 lib/ais/utils.c     return new_str;
new_str            35 lib/common/strings.c     char *new_str = NULL;
new_str            41 lib/common/strings.c     new_str = malloc(len);
new_str            42 lib/common/strings.c     if(new_str) {
new_str            43 lib/common/strings.c         sprintf(new_str, "%s%c%s", prefix, join, suffix);
new_str            44 lib/common/strings.c         new_str[len - 1] = 0;
new_str            46 lib/common/strings.c     return new_str;