summaryrefslogtreecommitdiff
path: root/misc.c
diff options
context:
space:
mode:
authordjm@openbsd.org <djm@openbsd.org>2019-09-03 08:29:58 +0000
committerDamien Miller <djm@mindrot.org>2019-09-03 18:39:31 +1000
commitc72d78ccbe642e08591a626e5de18381489716e0 (patch)
tree3c79965dde29c4b04cf0d871d068b54b2c2a084d /misc.c
parent06af3583f46e2c327fdd44d8a95b8b4e8dfd8db5 (diff)
upstream: move skip_space() to misc.c and make it public; ok
markus@ OpenBSD-Commit-ID: caa77e8a3b210948e29ad3e28c5db00852961eae
Diffstat (limited to 'misc.c')
-rw-r--r--misc.c12
1 files changed, 11 insertions, 1 deletions
diff --git a/misc.c b/misc.c
index c94d2c266..d5e44da77 100644
--- a/misc.c
+++ b/misc.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: misc.c,v 1.140 2019/08/16 06:13:15 djm Exp $ */ 1/* $OpenBSD: misc.c,v 1.141 2019/09/03 08:29:58 djm Exp $ */
2/* 2/*
3 * Copyright (c) 2000 Markus Friedl. All rights reserved. 3 * Copyright (c) 2000 Markus Friedl. All rights reserved.
4 * Copyright (c) 2005,2006 Damien Miller. All rights reserved. 4 * Copyright (c) 2005,2006 Damien Miller. All rights reserved.
@@ -2127,3 +2127,13 @@ path_absolute(const char *path)
2127{ 2127{
2128 return (*path == '/') ? 1 : 0; 2128 return (*path == '/') ? 1 : 0;
2129} 2129}
2130
2131void
2132skip_space(char **cpp)
2133{
2134 char *cp;
2135
2136 for (cp = *cpp; *cp == ' ' || *cp == '\t'; cp++)
2137 ;
2138 *cpp = cp;
2139}