/* @(#)subr.c 2.3.1 (2.11BSD) 1996/3/21 */ /* Copyright (c) 1979 Regents of the University of California */ #include "whoami" /* * pi - Pascal interpreter code translator * * Charles Haley, Bill Joy UCB * Version 1.2 November 1978 * * * pxp - Pascal execution profiler * * Bill Joy UCB * Version 1.2 November 1978 */ #include "0.h" #ifndef PI1 /* * Does the string fp end in '.' and the character c ? */ dotted(fp, c) register char *fp; char c; { register int i; i = strlen(fp); return (i > 1 && fp[i - 2] == '.' && fp[i - 1] == c); } /* * Toggle the option c. */ togopt(c) char c; { register char *tp; tp = &opts[c-'a']; *tp = 1 - *tp; } /* * Set the time vector "tvec" to the * modification time stamp of the current file. */ gettime() { # include struct stat stb; stat(filename, &stb); tvec = stb.st_mtime; } /* * Convert a "ctime" into a Pascal styple time line */ char * myctime(tv) int *tv; { register char *cp, *dp; char *cpp; register i; static char mycbuf[26]; cpp = ctime(tv); dp = mycbuf; cp = cpp; cpp[16] = 0; while (*dp++ = *cp++); dp--; cp = cpp+19; cpp[24] = 0; while (*dp++ = *cp++); return (mycbuf); } /* * Is "fp" in the command line list of names ? */ inpflist(fp) char *fp; { register i, *pfp; pfp = pflist; for (i = pflstc; i > 0; i--) if (strcmp(fp, *pfp++) == 0) return (1); return (0); } #endif extern int errno; /* * Boom! */ Perror(file, error) char *file, *error; { fprintf( stderr , "%s: %s\n" , file , error ); fflush( stderr ); } int * calloc(num, size) int num, size; { register int p1, *p2, nbyte; nbyte = (num*size+( ( sizeof ( int ) ) - 1 ) ) & ~( ( sizeof ( int ) ) - 1 ); if ((p1 = malloc(nbyte)) == 0 || p1==0) return (0); p2 = p1; nbyte /= sizeof ( int ); do { *p2++ = 0; } while (--nbyte); return (p1); } /* * Compare strings: s1>s2: >0 s1==s2: 0 s1>= 1; #ifdef PI0 send(ROPOP, c); #endif }