summaryrefslogtreecommitdiff
path: root/shortnames/dups.c
diff options
context:
space:
mode:
Diffstat (limited to 'shortnames/dups.c')
-rw-r--r--shortnames/dups.c62
1 files changed, 62 insertions, 0 deletions
diff --git a/shortnames/dups.c b/shortnames/dups.c
new file mode 100644
index 00000000000..79764ec9f03
--- /dev/null
+++ b/shortnames/dups.c
@@ -0,0 +1,62 @@
+/*
+ * Quick and dirty program to select adjacent records that are common
+ * in the first <arg> character positions.
+ *
+ */
+
+#include <stdio.h>
+
+#define MAXSIZE 512
+
+char ping[MAXSIZE];
+char pong[MAXSIZE];
+
+int flipflop = 0;
+int size = MAXSIZE-1;
+
+main (argc, argv)
+ int argc;
+ char *argv[];
+{
+ register int index;
+ char *newbuf();
+
+ if (argc == 2)
+ {
+ size = atoi (argv[1]);
+ }
+ while (newbuf() != NULL)
+ {
+ for (index=0; index < size; index++)
+ {
+ if (ping[index] != pong[index])
+ {
+ break;
+ }
+ }
+ if (index == size)
+ {
+ printf ("%s\n", ping);
+ printf ("%s\n", pong);
+ }
+ }
+ return (0);
+}
+
+char *
+newbuf ()
+{
+ char *bufp;
+
+ if (flipflop)
+ {
+ bufp = ping;
+ flipflop = 0;
+ }
+ else
+ {
+ bufp = pong;
+ flipflop = 1;
+ }
+ return (gets (bufp));
+}