[hackers] [sbase] mc: Initial commit || Robert Ransom

From: <hg_AT_suckless.org>
Date: Tue, 22 May 2012 13:08:50 +0200 (CEST)

changeset: 129:1d4d2e47d172
user: Robert Ransom <rransom.8774_AT_gmail.com>
date: Mon May 21 22:05:09 2012 +0000
files: Makefile mc.c
description:
mc: Initial commit


diff -r 9beeb0671738 -r 1d4d2e47d172 Makefile
--- a/Makefile Mon May 21 21:12:11 2012 +0000
+++ b/Makefile Mon May 21 22:05:09 2012 +0000
_AT_@ -37,6 +37,7 @@
         kill.c \
         ln.c \
         ls.c \
+ mc.c \
         mkdir.c \
         mkfifo.c \
         mv.c \
diff -r 9beeb0671738 -r 1d4d2e47d172 mc.c
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/mc.c Mon May 21 22:05:09 2012 +0000
_AT_@ -0,0 +1,83 @@
+/* See LICENSE file for copyright and license details. */
+#include <assert.h>
+#include <stdbool.h>
+#include <stdio.h>
+#include <stdlib.h>
+#include <string.h>
+#include <unistd.h>
+#include "text.h"
+#include "util.h"
+
+static long chars = 65;
+static struct linebuf b = EMPTY_LINEBUF;
+
+static long n_columns;
+static long n_rows;
+
+int
+main(int argc, char *argv[])
+{
+ int c;
+ long i, l, col;
+ size_t maxlen = 0;
+ char *space;
+ FILE *fp;
+
+ while ((c = getopt(argc, argv, "c:")) != -1)
+ switch (c) {
+ case 'c':
+ chars = estrtol(optarg, 0);
+ if (chars < 3)
+ eprintf("%d: too few character columns");
+ break;
+ default:
+ exit(2);
+ }
+
+ /* XXX librarify this chunk, too? only useful in sponges though */
+ if(optind == argc)
+ getlines(stdin, &b);
+ else for(; optind < argc; optind++) {
+ if(!(fp = fopen(argv[optind], "r")))
+ eprintf("fopen %s:", argv[optind]);
+ getlines(fp, &b);
+ fclose(fp);
+ }
+
+ for(l = 0; l < b.nlines; ++l) {
+ size_t len = strlen(b.lines[l]);
+ if(len > 0 && b.lines[l][len-1] == '\n')
+ b.lines[l][--len] = '\0';
+ if(len > maxlen)
+ maxlen = len;
+ if(maxlen > (chars - 1) / 2)
+ break;
+ }
+
+ n_columns = (chars + 1) / (maxlen + 1);
+ if(n_columns <= 1) {
+ for(l = 0; l < b.nlines; ++l) {
+ fputs(b.lines[l], stdout);
+ }
+ return EXIT_SUCCESS;
+ }
+
+ if(!(space = malloc(maxlen + 2)))
+ eprintf("malloc:");
+ memset(space, ' ', maxlen + 1);
+ space[maxlen + 1] = '\0';
+
+ n_rows = (b.nlines + (n_columns - 1)) / n_columns;
+ for(i = 0; i < n_rows; ++i) {
+ for(l = i, col = 1; l < b.nlines; l += n_rows, ++col) {
+ /*sprintf(b.lines[l], "%ld,%ld$", i, col);*/
+ fputs(b.lines[l], stdout);
+ if(col < n_columns)
+ fputs(space + strlen(b.lines[l]), stdout);
+ }
+ fputs("\n", stdout);
+ }
+
+ return EXIT_SUCCESS;
+}
+
Received on Tue May 22 2012 - 13:08:50 CEST

This archive was generated by hypermail 2.3.0 : Tue May 22 2012 - 13:12:12 CEST