meta: rename to fx

This commit is contained in:
2026-03-16 10:35:43 +00:00
parent 84df46489a
commit e9d0e323f0
233 changed files with 12875 additions and 12869 deletions

View File

@@ -1,11 +1,11 @@
#include <blue/ds/string.h>
#include <fx/ds/string.h>
int main(void)
{
b_string *string = B_CSTR("Hello, world!");
fx_string *string = FX_CSTR("Hello, world!");
printf("string object = ");
b_object_to_string(string, b_stdout);
fx_object_to_string(string, fx_stdout);
printf("\n");
b_string_unref(string);
fx_string_unref(string);
return 0;
}