From: Abner Chang <abner.chang@hpe.com>
To: opensbi@lists.infradead.org
Subject: [PATCH 1/3] Use standard C string APIs in FDT helper
Date: Thu, 23 Jul 2020 09:54:02 +0800 [thread overview]
Message-ID: <20200723015404.17667-2-abner.chang@hpe.com> (raw)
In-Reply-To: <20200723015404.17667-1-abner.chang@hpe.com>
Use strncmp instead of using sbi_strcmp directly in fdthelp.c.
- This commit add implementation of sbi_strncmp.
Signed-off-by: Abner Chang <abner.chang@hpe.com>
Cc: Atish Patra <atish.patra@wdc.com>
Cc: Anup Patel <anup.patel@wdc.com>
Cc: Daniel Schaefer <daniel.schaefer@hpe.com>
---
include/sbi/sbi_string.h | 2 +-
lib/sbi/sbi_string.c | 4 ++--
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/include/sbi/sbi_string.h b/include/sbi/sbi_string.h
index 338075f..5e7304f 100644
--- a/include/sbi/sbi_string.h
+++ b/include/sbi/sbi_string.h
@@ -12,7 +12,7 @@
#include <sbi/sbi_types.h>
-int sbi_strcmp(const char *a, const char *b);
+int sbi_strncmp(const char *a, const char *b, size_t count);
size_t sbi_strlen(const char *str);
diff --git a/lib/sbi/sbi_string.c b/lib/sbi/sbi_string.c
index 38b700b..c29120a 100644
--- a/lib/sbi/sbi_string.c
+++ b/lib/sbi/sbi_string.c
@@ -14,10 +14,10 @@
#include <sbi/sbi_string.h>
-int sbi_strcmp(const char *a, const char *b)
+int sbi_strncmp(const char *a, const char *b, size_t count)
{
/* search first diff or end of string */
- for (; *a == *b && *a != '\0'; a++, b++)
+ for (; count > 0 && *a == *b && *a != '\0'; a++, b++, count--)
;
return *a - *b;
--
2.25.0
next prev parent reply other threads:[~2020-07-23 1:54 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-07-23 1:54 [PATCH 0/3] Use standard C string APIs in FDT helper Abner Chang
2020-07-23 1:54 ` Abner Chang [this message]
2020-07-24 4:37 ` [PATCH 1/3] " Anup Patel
2020-07-24 5:38 ` Chang, Abner
2020-07-25 5:21 ` Atish Patra
2020-07-25 5:22 ` Atish Patra
2020-07-25 9:20 ` Chang, Abner
2020-07-23 1:54 ` [PATCH 2/3] " Abner Chang
2020-07-24 4:38 ` Anup Patel
2020-07-23 1:54 ` [PATCH 3/3] " Abner Chang
2020-07-24 4:40 ` Anup Patel
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20200723015404.17667-2-abner.chang@hpe.com \
--to=abner.chang@hpe.com \
--cc=opensbi@lists.infradead.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox