back out bitmask_snprintf()
authorkstailey <kstailey@openbsd.org>
Fri, 29 Nov 1996 04:53:38 +0000 (04:53 +0000)
committerkstailey <kstailey@openbsd.org>
Fri, 29 Nov 1996 04:53:38 +0000 (04:53 +0000)
sys/kern/subr_prf.c
sys/sys/systm.h

index 50e8201..6265220 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: subr_prf.c,v 1.13 1996/11/24 04:29:48 niklas Exp $    */
+/*     $OpenBSD: subr_prf.c,v 1.14 1996/11/29 04:53:39 kstailey Exp $  */
 /*     $NetBSD: subr_prf.c,v 1.25 1996/04/22 01:38:46 christos Exp $   */
 
 /*-
 #define TOTTY  0x02
 #define TOLOG  0x04
 
-/*
- * This is the size of the buffer that should be passed to ksnprintn().
- * It's the length of a long in base 8, plus NULL.
- */
-#define KSNPRINTN_BUFSIZE      (sizeof(long) * NBBY / 3 + 2)
-
 struct tty *constty;                   /* pointer to console "window" tty */
 
 void   (*v_putc) __P((int)) = cnputc;  /* routine to putc on virtual console */
@@ -699,74 +693,3 @@ ksprintn(ul, base, lenp)
                *lenp = p - buf;
        return (p);
 }
-
-
-/*
- * Print a bitmask into the provided buffer, and return a pointer
- * to that buffer.
- */
-char *
-bitmask_snprintf(ul, p, buf, buflen)
-       u_long ul;
-       const char *p;
-       char *buf;
-       size_t buflen;
-{
-       char *bp, *q;
-       size_t left;
-       register int n;
-       int ch, tmp;
-       /* char snbuf[KSNPRINTN_BUFSIZE]; */
-
-       bp = buf;
-       bzero(buf, buflen);
-
-       /*
-        * Always leave room for the trailing NULL.
-        */
-       left = buflen - 1;
-
-       /*
-        * Print the value into the buffer.  Abort if there's not
-        * enough room.
-        */
-       if (buflen < KSNPRINTN_BUFSIZE)
-               return (buf);
-
-       for (q = ksprintn(ul, *p++, NULL); /* , snbuf, sizeof(snbuf)); */
-            (ch = *q--) != 0;) {
-               *bp++ = ch;
-               left--;
-       }
-
-       /*
-        * If the value we printed was 0, or if we don't have room for
-        * "<x>", we're done.
-        */
-       if (ul == 0 || left < 3)
-               return (buf);
-
-#define PUTBYTE(b, c, l)       \
-       *(b)++ = (c);           \
-       if (--(l) == 0)         \
-               goto out;
-
-       for (tmp = 0; (n = *p++) != 0;) {
-               if (ul & (1 << (n - 1))) {
-                       PUTBYTE(bp, tmp ? ',' : '<', left);
-                               for (; (n = *p) > ' '; ++p) {
-                                       PUTBYTE(bp, n, left);
-                               }
-                               tmp = 1;
-               } else
-                       for (; *p > ' '; ++p)
-                               continue;
-       }
-       if (tmp)
-               *bp = '>';
-
-#undef PUTBYTE
-
- out:
-       return (buf);
-}
index a85ec73..7aa6658 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: systm.h,v 1.15 1996/11/24 04:30:56 niklas Exp $       */
+/*     $OpenBSD: systm.h,v 1.16 1996/11/29 04:53:38 kstailey Exp $     */
 /*     $NetBSD: systm.h,v 1.50 1996/06/09 04:55:09 briggs Exp $        */
 
 /*-
@@ -158,7 +158,6 @@ int sprintf __P((char *buf, const char *, ...))
 struct tty;
 void   ttyprintf __P((struct tty *, const char *, ...))
     __kprintf_attribute__((__format__(__kprintf__,2,3)));
-char   *bitmask_snprintf __P((u_long, const char *, char *, size_t));
 
 void   tablefull __P((const char *));