[BACK]Return to parse.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / hexdump

Diff for /src/usr.bin/hexdump/parse.c between version 1.5 and 1.6

version 1.5, 1999/02/07 20:54:09 version 1.6, 2001/09/30 07:17:03
Line 48 
Line 48 
   
 FU *endfu;                                      /* format at end-of-data */  FU *endfu;                                      /* format at end-of-data */
   
   void
 addfile(name)  addfile(name)
         char *name;          char *name;
 {  {
Line 74 
Line 75 
         (void)fclose(fp);          (void)fclose(fp);
 }  }
   
   void
 add(fmt)  add(fmt)
         char *fmt;          char *fmt;
 {  {
Line 152 
Line 154 
 }  }
   
 static char *spec = ".#-+ 0123456789";  static char *spec = ".#-+ 0123456789";
   int
 size(fs)  size(fs)
         FS *fs;          FS *fs;
 {  {
Line 205 
Line 208 
         return(cursize);          return(cursize);
 }  }
   
   void
 rewrite(fs)  rewrite(fs)
         FS *fs;          FS *fs;
 {  {
Line 445 
Line 449 
 }  }
   
   
   void
 escape(p1)  escape(p1)
         register char *p1;          register char *p1;
 {  {
Line 487 
Line 492 
         }          }
 }  }
   
   void
 badcnt(s)  badcnt(s)
         char *s;          char *s;
 {  {
Line 495 
Line 501 
         exit(1);          exit(1);
 }  }
   
   void
 badsfmt()  badsfmt()
 {  {
         (void)fprintf(stderr,          (void)fprintf(stderr,
Line 502 
Line 509 
         exit(1);          exit(1);
 }  }
   
   void
 badfmt(fmt)  badfmt(fmt)
         char *fmt;          char *fmt;
 {  {
Line 509 
Line 517 
         exit(1);          exit(1);
 }  }
   
   void
 badconv(ch)  badconv(ch)
         char *ch;          char *ch;
 {  {

Legend:
Removed from v.1.5  
changed lines
  Added in v.1.6