summaryrefslogtreecommitdiff
path: root/src/array.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/array.c')
-rw-r--r--src/array.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/array.c b/src/array.c
index e35455b..d8751aa 100644
--- a/src/array.c
+++ b/src/array.c
@@ -330,30 +330,30 @@ int main (int argc, char **argv) {
a = array_init();
ds = data_string_init();
- buffer_copy_string(ds->key, "abc");
- buffer_copy_string(ds->value, "alfrag");
+ buffer_copy_string_len(ds->key, CONST_STR_LEN("abc"));
+ buffer_copy_string_len(ds->value, CONST_STR_LEN("alfrag"));
array_insert_unique(a, (data_unset *)ds);
ds = data_string_init();
- buffer_copy_string(ds->key, "abc");
- buffer_copy_string(ds->value, "hameplman");
+ buffer_copy_string_len(ds->key, CONST_STR_LEN("abc"));
+ buffer_copy_string_len(ds->value, CONST_STR_LEN("hameplman"));
array_insert_unique(a, (data_unset *)ds);
ds = data_string_init();
- buffer_copy_string(ds->key, "123");
- buffer_copy_string(ds->value, "alfrag");
+ buffer_copy_string_len(ds->key, CONST_STR_LEN("123"));
+ buffer_copy_string_len(ds->value, CONST_STR_LEN("alfrag"));
array_insert_unique(a, (data_unset *)ds);
dc = data_count_init();
- buffer_copy_string(dc->key, "def");
+ buffer_copy_string_len(dc->key, CONST_STR_LEN("def"));
array_insert_unique(a, (data_unset *)dc);
dc = data_count_init();
- buffer_copy_string(dc->key, "def");
+ buffer_copy_string_len(dc->key, CONST_STR_LEN("def"));
array_insert_unique(a, (data_unset *)dc);