[BACK]Return to util.h CVS log [TXT][DIR] Up to [local] / src / usr.bin / cvs

Diff for /src/usr.bin/cvs/util.h between version 1.3 and 1.4

version 1.3, 2006/03/17 13:40:41 version 1.4, 2006/03/27 06:13:51
Line 69 
Line 69 
         struct cvs_tqh  l_lines;          struct cvs_tqh  l_lines;
 };  };
   
   struct cvs_argvector {
           char *str;
           char **argv;
   };
   
 BUF                     *cvs_patchfile(const char *, const char *,  BUF                     *cvs_patchfile(const char *, const char *,
                             int (*p)(struct cvs_lines *, struct cvs_lines *));                              int (*p)(struct cvs_lines *, struct cvs_lines *));
 struct cvs_lines        *cvs_splitlines(const char *);  struct cvs_lines        *cvs_splitlines(const char *);
 void                    cvs_freelines(struct cvs_lines *);  void                    cvs_freelines(struct cvs_lines *);
 int                     cvs_yesno(void);  int                     cvs_yesno(void);
 char                    **cvs_strsplit(char *, const char *);  struct cvs_argvector    *cvs_strsplit(char *, const char *);
   
   void                    cvs_argv_destroy(struct cvs_argvector *);
   
 #endif  /* UTIL_H */  #endif  /* UTIL_H */

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