This commit is the initial sync of all files from ruby/yarp into ruby/ruby. Notably, it does the following: * Sync all ruby/yarp/lib/ files to ruby/ruby/lib/yarp * Sync all ruby/yarp/src/ files to ruby/ruby/yarp/ * Sync all ruby/yarp/test/ files to ruby/ruby/test/yarp
33 lines
1005 B
C
33 lines
1005 B
C
#include "yarp/util/yp_string_list.h"
|
|
|
|
// Allocate a new yp_string_list_t.
|
|
yp_string_list_t *
|
|
yp_string_list_alloc(void) {
|
|
return (yp_string_list_t *) malloc(sizeof(yp_string_list_t));
|
|
}
|
|
|
|
// Initialize a yp_string_list_t with its default values.
|
|
void
|
|
yp_string_list_init(yp_string_list_t *string_list) {
|
|
string_list->strings = (yp_string_t *) malloc(sizeof(yp_string_t));
|
|
string_list->length = 0;
|
|
string_list->capacity = 1;
|
|
}
|
|
|
|
// Append a yp_string_t to the given string list.
|
|
void
|
|
yp_string_list_append(yp_string_list_t *string_list, yp_string_t *string) {
|
|
if (string_list->length + 1 > string_list->capacity) {
|
|
string_list->capacity *= 2;
|
|
string_list->strings = (yp_string_t *) realloc(string_list->strings, string_list->capacity * sizeof(yp_string_t));
|
|
}
|
|
|
|
string_list->strings[string_list->length++] = *string;
|
|
}
|
|
|
|
// Free the memory associated with the string list.
|
|
void
|
|
yp_string_list_free(yp_string_list_t *string_list) {
|
|
free(string_list->strings);
|
|
}
|