summaryrefslogtreecommitdiff
path: root/clients/zwrite
diff options
context:
space:
mode:
authorGravatar John Kohl <jtkohl@mit.edu>1988-07-14 11:09:05 +0000
committerGravatar John Kohl <jtkohl@mit.edu>1988-07-14 11:09:05 +0000
commit544db469eca3267dfe95ad97b9eae272658a9f15 (patch)
tree5bcc03589fa6e34ef482af64eb76030c4d565572 /clients/zwrite
parenta56e2fd7a3be8e8859fbc5f55bac169b1b46e29f (diff)
add tabify code
Diffstat (limited to 'clients/zwrite')
-rw-r--r--clients/zwrite/zwrite.c67
1 files changed, 67 insertions, 0 deletions
diff --git a/clients/zwrite/zwrite.c b/clients/zwrite/zwrite.c
index 03a9c79..af7d777 100644
--- a/clients/zwrite/zwrite.c
+++ b/clients/zwrite/zwrite.c
@@ -31,6 +31,7 @@ static char rcsid_zwrite_c[] = "$Header$";
int nrecips, msgarg, verbose, quiet;
char *whoami, *inst, *class, *recips[MAXRECIPS];
int (*auth)();
+void un_tabify();
extern char *malloc(), *realloc();
char *fix_filsrv_inst();
@@ -229,6 +230,7 @@ main(argc, argv)
}
notice.z_opcode = "";
+ un_tabify(&message, &msgsize);
notice.z_message = message;
notice.z_message_len = msgsize;
@@ -365,3 +367,68 @@ char *str;
}
return(fsinst);
}
+
+/* convert tabs in the buffer into appropriate # of spaces.
+ slightly tricky since the buffer can have NUL's in it. */
+
+#ifndef TABSTOP
+#define TABSTOP 8 /* #chars between tabstops */
+#endif /* ! TABSTOP */
+
+void
+un_tabify(bufp, sizep)
+char **bufp;
+register int *sizep;
+{
+ register char *cp, *cp2;
+ char *cp3;
+ register int i;
+ register int column; /* column of next character */
+ register int size = *sizep;
+
+ for (cp = *bufp, i = 0; size; size--, cp++)
+ if (*cp == '\t')
+ i++; /* count tabs in buffer */
+
+ if (!i)
+ return; /* no tabs == no work */
+
+ /* To avoid allocation churning, allocate enough extra space to convert
+ every tab into TABSTOP spaces */
+ /* only add (TABSTOP-1)x because we re-use the cell holding the
+ tab itself */
+ cp = malloc((unsigned)(*sizep + (i * (TABSTOP-1))));
+ if (!cp) /* XXX */
+ return; /* punt expanding if memory fails */
+ cp3 = cp;
+ /* Copy buffer, converting tabs to spaces as we go */
+ for (cp2 = *bufp, column = 1, size = *sizep; size; cp2++, size--) {
+ switch (*cp2) {
+ case '\n':
+ case '\0':
+ /* newline or null: reset column */
+ column = 1;
+ *cp++ = *cp2; /* copy the newline */
+ break;
+ default:
+ /* copy the character */
+ *cp = *cp2;
+ cp++;
+ column++;
+ break;
+ case '\t':
+ /* it's a tab, compute how many spaces to expand into. */
+ i = TABSTOP - ((column - 1) % TABSTOP);
+ for (; i > 0; i--) {
+ *cp++ = ' '; /* fill in the spaces */
+ column++;
+ (*sizep)++; /* increment the size */
+ }
+ (*sizep)--; /* remove one (we replaced the tab) */
+ break;
+ }
+ }
+ free(*bufp); /* free the old buf */
+ *bufp = cp3;
+ return;
+}