DataMuseum.dk

Presents historical artifacts from the history of:

DKUUG/EUUG Conference tapes

This is an automatic "excavation" of a thematic subset of
artifacts from Datamuseum.dk's BitArchive.

See our Wiki for more about DKUUG/EUUG Conference tapes

Excavated with: AutoArchaeologist - Free & Open Source Software.


top - download
Index: ┃ T d

⟦9863402a7⟧ TextFile

    Length: 857 (0x359)
    Types: TextFile
    Names: »dups.c«

Derivation

└─⟦a0efdde77⟧ Bits:30001252 EUUGD11 Tape, 1987 Spring Conference Helsinki
    └─ ⟦this⟧ »EUUGD11/gnu-31mar87/emacs/shortnames/dups.c« 

TextFile

/*
 *	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));
}