PWB1/sys/source/rje/rjestat/rjestat6.c

Compare this file to the similar file:
Show the results in this format:

#
/* rjestat6.c */


/* This information is proprietary and is the property of Bell
   Telephone Laboratories, Incorporated.  Its reproduction or
   disclosure to others, either orally or in writing, is pro-
   hibited without written permission of Bell Laboratories. */


#define IDMOD rstat6

#define IDSTR "~|^`rjestat6.c 1.3 1/29/76

#include "rjestat.h"

mtch(n,s,t)
 char *s,*t;
 {register char *p,*q;
  register int k;
  k=n; p=s; q=t;
  while (--k>=0)
   {if (*p++!=(*q++)) return (0);};
  return (~0);};

scan(s,t)
 char *s,*t;
 {register char c,*p,*q;
  char *p0;
  if ((c=(*s))==0) return (t);
  for (p=t;*p;p++)
   {if (*p!=c) continue;
    p0=p; q=s;
    while ((c=(*++q))!=0 && *++p!=0)
     {if (*p!=c && c!='.') break;};
     if (c==0) return (p0);
    p=p0; c=(*s);};
  return (0);};

char *prfq;

prf(s,a)
 char *s;
 {register int c,*aa;
  register char *p;
  p=s;
  aa=(&a);
  while (c=(*p++))
   {if (c!='%') {prc(c); continue;};
    if ((c=(*p++))==0) break;
    if (c=='c') prc(*aa++);
    if (c=='d') prd(*aa++);
    if (c=='o') pro(*aa++);
    if (c=='s') prs(*aa++);
    if (c=='t') prt(*aa++);
    if (c=='q') prfq=(*aa++);};
  if (p=prfq) *p=prfq=0;
  return (p);};

prc(c)
 {register char *q;
  if (q=prfq)
   {*q++=c; prfq=q; return;};
  write(1,&c,1);};

prd(n)
 {register int m,k;
  if ((m=n)<0) {prc('-'); m=(-m);};
  if (k=m/10) prd(k);
  prc('0'+m%10);};

pro(n)
 {register int k;
  if (k=017777&(n>>3)) pro(k);
  prc('0'+(7&n));};

prs(s)
 char *s;
 {register int i;
  register char *p;
  p=s;
  while (i=(*p++)) prc(i);};

prt(v)
 int v[];
 {register char *p;
  p=ctime(v)+11;
  *(p+8)=0;
  prs(p);};

/*end*/