meta: rename legacy object module to 'ds'

This commit is contained in:
2025-08-09 19:57:42 +01:00
parent a5e3e06306
commit 0751ef469f
80 changed files with 460 additions and 460 deletions

View File

@@ -1,7 +1,7 @@
#include <CuTest.h>
#include <blue/core/stringstream.h>
#include <blue/io/path.h>
#include <blue/object/object.h>
#include <blue/ds/object.h>
#include <stdio.h>
void test_path_1(CuTest *tc)
@@ -11,7 +11,7 @@ void test_path_1(CuTest *tc)
b_stringstream str;
b_stringstream_begin(&str, buf, sizeof buf);
b_to_string(B_OBJECT(path), (b_stream *)&str);
b_to_string(B_DSREF(path), (b_stream *)&str);
printf("%s\n", buf);
@@ -23,7 +23,7 @@ void test_path_1(CuTest *tc)
b_path *path4 = b_path_join(paths, sizeof paths / sizeof paths[0]);
b_stringstream_begin(&str, buf, sizeof buf);
b_to_string(B_OBJECT(path4), (b_stream *)&str);
b_to_string(B_DSREF(path4), (b_stream *)&str);
printf("%s\n", buf);
}