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

Diff for /src/usr.bin/man/Attic/config.c between version 1.2 and 1.3

version 1.2, 1996/06/26 05:36:59 version 1.3, 2002/09/17 19:37:39
Line 68 
Line 68 
  *      tag2 <-> record <-> record <-> record   *      tag2 <-> record <-> record <-> record
  */   */
 void  void
 config(fname)  config(char *fname)
         char *fname;  
 {  {
         TAG *tp;          TAG *tp;
         ENTRY *ep;          ENTRY *ep;
Line 138 
Line 137 
  *      Add a tag to the list.   *      Add a tag to the list.
  */   */
 TAG *  TAG *
 addlist(name)  addlist(char *name)
         char *name;  
 {  {
         TAG *tp;          TAG *tp;
   
Line 156 
Line 154 
  *      Return the linked list of entries for a tag if it exists.   *      Return the linked list of entries for a tag if it exists.
  */   */
 TAG *  TAG *
 getlist(name)  getlist(char *name)
         char *name;  
 {  {
         TAG *tp;          TAG *tp;
   
Line 168 
Line 165 
 }  }
   
 void  void
 debug(l)  debug(char *l)
         char *l;  
 {  {
         TAG *tp;          TAG *tp;
         ENTRY *ep;          ENTRY *ep;

Legend:
Removed from v.1.2  
changed lines
  Added in v.1.3