summaryrefslogtreecommitdiff
path: root/src/skaembutils/s6-quote.c
diff options
context:
space:
mode:
authorLaurent Bercot <ska-skaware@skarnet.org>2023-02-11 03:12:21 +0000
committerLaurent Bercot <ska@appnovation.com>2023-02-11 03:12:21 +0000
commit774654ad56fc9304e4a064232760835c7a2a6c13 (patch)
tree3f539521073866497ff0370d8a6464c9356cadb4 /src/skaembutils/s6-quote.c
parent790c8681d3451b61a536871dad234fc294796fd8 (diff)
downloads6-portable-utils-774654ad56fc9304e4a064232760835c7a2a6c13.tar.xz
Add multicall configuration
Signed-off-by: Laurent Bercot <ska@appnovation.com>
Diffstat (limited to 'src/skaembutils/s6-quote.c')
-rw-r--r--src/skaembutils/s6-quote.c60
1 files changed, 0 insertions, 60 deletions
diff --git a/src/skaembutils/s6-quote.c b/src/skaembutils/s6-quote.c
deleted file mode 100644
index 74c137c..0000000
--- a/src/skaembutils/s6-quote.c
+++ /dev/null
@@ -1,60 +0,0 @@
-/* ISC license. */
-
-#include <string.h>
-
-#include <skalibs/sgetopt.h>
-#include <skalibs/strerr.h>
-#include <skalibs/allreadwrite.h>
-#include <skalibs/stralloc.h>
-#include <skalibs/skamisc.h>
-
-#define USAGE "s6-quote [ -n ] [ -u ] [ -d delim ] string"
-
-int main (int argc, char const *const *argv)
-{
- stralloc sa = STRALLOC_ZERO ;
- char const *delim = "\"" ;
- size_t delimlen ;
- size_t startquote = 1 ;
- int nl = 1 ;
- PROG = "s6-quote" ;
- {
- subgetopt l = SUBGETOPT_ZERO ;
- for (;;)
- {
- int opt = subgetopt_r(argc, argv, "nud:", &l) ;
- if (opt == -1) break ;
- switch (opt)
- {
- case 'n' : nl = 0 ; break ;
- case 'u' : startquote = 0 ; break ;
- case 'd': delim = l.arg ; break ;
- default : strerr_dieusage(100, USAGE) ;
- }
- }
- argc -= l.ind ; argv += l.ind ;
- }
- if (!argc) strerr_dieusage(100, USAGE) ;
- delimlen = strlen(delim) ;
- if (startquote)
- {
- if (!delimlen) strerr_dief1x(100, "no character to quote with!") ;
- if (!stralloc_catb(&sa, delim, 1))
- strerr_diefu1sys(111, "stralloc_catb") ;
- }
- if (!string_quote_nodelim_mustquote(&sa, *argv, strlen(*argv), delim, delimlen))
- strerr_diefu1sys(111, "quote") ;
- if (startquote)
- {
- if (!stralloc_catb(&sa, delim, 1))
- strerr_diefu1sys(111, "stralloc_catb") ;
- }
- if (nl)
- {
- if (!stralloc_catb(&sa, "\n", 1))
- strerr_diefu1sys(111, "stralloc_catb") ;
- }
- if (allwrite(1, sa.s, sa.len) < sa.len)
- strerr_diefu1sys(111, "write to stdout") ;
- return 0 ;
-}