public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
* [PATCH v1 1/1] EmbeddedPkg/libfdt: Add strmp and strncpy to libfdt_env.h
@ 2021-05-19 14:58 Daniel Schaefer
  2021-05-19 15:30 ` Abner Chang
       [not found] ` <1680817ADB2092C8.5504@groups.io>
  0 siblings, 2 replies; 5+ messages in thread
From: Daniel Schaefer @ 2021-05-19 14:58 UTC (permalink / raw)
  To: devel; +Cc: Abner Chang, Leif Lindholm, Ard Biesheuvel, Anup Patel

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 <abner.chang@hpe.com>
Cc: Leif Lindholm <leif@nuviainc.com>
Cc: Ard Biesheuvel <ard.biesheuvel@arm.com>
Cc: Daniel Schaefer <daniel.schaefer@hpe.com>
Cc: Anup Patel <anup.patel@wdc.com>
Signed-off-by: Daniel Schaefer <daniel.schaefer@hpe.com>
---
 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


^ permalink raw reply related	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2021-08-04 12:48 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-05-19 14:58 [PATCH v1 1/1] EmbeddedPkg/libfdt: Add strmp and strncpy to libfdt_env.h Daniel Schaefer
2021-05-19 15:30 ` Abner Chang
     [not found] ` <1680817ADB2092C8.5504@groups.io>
2021-07-14 14:05   ` [edk2-devel] " Abner Chang
2021-08-04 12:33     ` Leif Lindholm
2021-08-04 12:47       ` Abner Chang

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox