[PATCH] readline: use a simple function to replace printf
Du Huanpeng
d-hp at 163.com
Thu Apr 14 06:46:54 PDT 2016
From: Du Huanpeng <u74147 at gmail.com>
maybe this patch is not very necessary, but this make we have
opportunity to use simplified version of printf.
printf ("%.*s", n, str);
Signed-off-by: Du Huanpeng <u74147 at gmail.com>
---
lib/readline.c | 10 +++++++---
1 file changed, 7 insertions(+), 3 deletions(-)
diff --git a/lib/readline.c b/lib/readline.c
index b5d99ca..31fd1ed 100644
--- a/lib/readline.c
+++ b/lib/readline.c
@@ -13,9 +13,6 @@
* Author: Janghoon Lyu <nandy at mizi.com>
*/
-#define putnstr(str,n) do { \
- printf ("%.*s", n, str); \
- } while (0)
#define CTL_BACKSPACE ('\b')
#define DEL 255
@@ -36,6 +33,13 @@ static LIST_HEAD(history_list);
static struct list_head *history_current;
static int history_num_entries;
+static void putnstr(const char *str, int n)
+{
+ int i;
+ for(i=0; i<n && str[i]; i++) {
+ putchar(str[i]);
+ }
+}
static void cread_add_to_hist(char *line)
{
struct history *history;
--
1.9.1
More information about the barebox
mailing list