aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/ml.c
diff options
context:
space:
mode:
Diffstat (limited to 'ml.c')
-rw-r--r--ml.c15
1 files changed, 14 insertions, 1 deletions
diff --git a/ml.c b/ml.c
index 917052ca..ba483615 100644
--- a/ml.c
+++ b/ml.c
@@ -1,4 +1,4 @@
-/* $Id: ml.c,v 1.2 2008/12/03 14:39:59 kristaps Exp $ */
+/* $Id: ml.c,v 1.3 2008/12/03 19:21:58 kristaps Exp $ */
/*
* Copyright (c) 2008 Kristaps Dzonsons <kristaps@kth.se>
*
@@ -76,6 +76,19 @@ ml_nputs(struct md_mbuf *p, const char *buf, size_t sz, size_t *pos)
int
+ml_puts(struct md_mbuf *p, const char *buf, size_t *pos)
+{
+ size_t sz;
+
+ sz = strlen(buf);
+ if ( ! md_buf_puts(p, buf, sz))
+ return(0);
+ *pos += sz;
+ return(1);
+}
+
+
+int
ml_putchars(struct md_mbuf *p, char buf, size_t count, size_t *pos)
{
size_t i;