OpenSBI has started using those in v0.9. See: https://github.com/riscv/opensbi/blob/v0.9/lib/utils/fdt/fdt_domain.c
Cc: Abner Chang <[email protected]> Cc: Leif Lindholm <[email protected]> Cc: Ard Biesheuvel <[email protected]> Cc: Daniel Schaefer <[email protected]> Cc: Anup Patel <[email protected]> Signed-off-by: Daniel Schaefer <[email protected]> --- EmbeddedPkg/Include/libfdt_env.h | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/EmbeddedPkg/Include/libfdt_env.h b/EmbeddedPkg/Include/libfdt_env.h index 7feff52bc0fb..c35ac739703c 100644 --- a/EmbeddedPkg/Include/libfdt_env.h +++ b/EmbeddedPkg/Include/libfdt_env.h @@ -76,8 +76,16 @@ static inline size_t strnlen (const char* str, size_t strsz ) { return AsciiStrnLenS (str, strsz); } +static inline size_t strcmp (const char* str1, const char* str2) { + return AsciiStrCmp (str1, str2); +} + static inline size_t strncmp (const char* str1, const char* str2, size_t strsz ) { return AsciiStrnCmp (str1, str2, strsz); } +static inline size_t strncpy (char* dest, const char* source, size_t dest_max) { + return AsciiStrCpyS (dest, dest_max, source); +} + #endif /* _LIBFDT_ENV_H */ -- 2.30.1 -=-=-=-=-=-=-=-=-=-=-=- Groups.io Links: You receive all messages sent to this group. View/Reply Online (#75383): https://edk2.groups.io/g/devel/message/75383 Mute This Topic: https://groups.io/mt/82938220/21656 Group Owner: [email protected] Unsubscribe: https://edk2.groups.io/g/devel/unsub [[email protected]] -=-=-=-=-=-=-=-=-=-=-=-
