hello everyone,
S32K344 and GCC 10.2 were used for my project developping. in my project, memset and memcpy were use freqently.
i found that the memcpy and memset in lib is vevry simple and low efficienct by byte operation.
i have developped the optimized functions using SIMD operations.
now i wanna to replace the memcpy and memset functions in the lib in a transparent method, namely, i wanna to use #include <string.h> in my source files.
and more, the optimized functions are in a .h file and with an inline modifier.
is there any way to achieve the goal.
thanks
best regards.