X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?p=o-du%2Fphy.git;a=blobdiff_plain;f=fapi_5g%2Fsource%2Finclude%2Fnr5g_fapi_memory.h;h=2d5713c3a49168b572b8f0549c4ba51411309528;hp=0b877df414d102261af8a8a2a2112a94357552a6;hb=81a09690b36b3a4e89b4dae34f30933de13f7f90;hpb=70d9d920dd4e575f085f1f1a9050fefd1c10e127 diff --git a/fapi_5g/source/include/nr5g_fapi_memory.h b/fapi_5g/source/include/nr5g_fapi_memory.h index 0b877df..2d5713c 100644 --- a/fapi_5g/source/include/nr5g_fapi_memory.h +++ b/fapi_5g/source/include/nr5g_fapi_memory.h @@ -28,17 +28,17 @@ #define NR5G_FAPI_MEMSET(s, x, c, n) nr5g_fapi_memset_bound_check(s, x, c, n) #define NR5G_FAPI_STRCPY(d, x, s, n) nr5g_fapi_strcpy_bound_check(d, x, s, n) -inline uint8_t nr5g_fapi_memcpy_bound_check( +uint8_t nr5g_fapi_memcpy_bound_check( void *d, size_t x, const void *s, size_t n); -inline uint8_t nr5g_fapi_memset_bound_check( +uint8_t nr5g_fapi_memset_bound_check( void *s, size_t x, const int32_t c, size_t n); -inline uint8_t nr5g_fapi_strcpy_bound_check( +uint8_t nr5g_fapi_strcpy_bound_check( char *d, size_t x, const char *s,