about summary refs log tree commit diff
path: root/seq.c
diff options
context:
space:
mode:
Diffstat (limited to 'seq.c')
-rw-r--r--seq.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/seq.c b/seq.c
index 939eae7..b48b625 100644
--- a/seq.c
+++ b/seq.c
@@ -365,3 +365,10 @@ blaze822_loop(int argc, char *argv[], void (*cb)(char *))
 	}
 	return j;
 }
+
+int
+blaze822_loop1(char *arg, void (*cb)(char *))
+{
+	char *args[] = { arg };
+	return blaze822_loop(1, args, cb);
+}