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,16 +1,16 @@
#include <blue/core/bitop.h>
#include <fx/core/bitop.h>
int b_popcountl(long v)
int fx_popcountl(long v)
{
return __builtin_popcountl(v);
}
int b_ctzl(long v)
int fx_ctzl(long v)
{
return __builtin_ctzl(v);
}
int b_clzl(long v)
int fx_clzl(long v)
{
return __builtin_clzl(v);
}