=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/cvs/util.h,v retrieving revision 1.3 retrieving revision 1.4 diff -c -r1.3 -r1.4 *** src/usr.bin/cvs/util.h 2006/03/17 13:40:41 1.3 --- src/usr.bin/cvs/util.h 2006/03/27 06:13:51 1.4 *************** *** 1,4 **** ! /* $OpenBSD: util.h,v 1.3 2006/03/17 13:40:41 niallo Exp $ */ /* * Copyright (c) 2006 Niall O'Higgins * All rights reserved. --- 1,4 ---- ! /* $OpenBSD: util.h,v 1.4 2006/03/27 06:13:51 pat Exp $ */ /* * Copyright (c) 2006 Niall O'Higgins * All rights reserved. *************** *** 69,80 **** struct cvs_tqh l_lines; }; BUF *cvs_patchfile(const char *, const char *, int (*p)(struct cvs_lines *, struct cvs_lines *)); struct cvs_lines *cvs_splitlines(const char *); void cvs_freelines(struct cvs_lines *); int cvs_yesno(void); ! char **cvs_strsplit(char *, const char *); #endif /* UTIL_H */ --- 69,86 ---- struct cvs_tqh l_lines; }; + struct cvs_argvector { + char *str; + char **argv; + }; BUF *cvs_patchfile(const char *, const char *, int (*p)(struct cvs_lines *, struct cvs_lines *)); struct cvs_lines *cvs_splitlines(const char *); void cvs_freelines(struct cvs_lines *); int cvs_yesno(void); ! struct cvs_argvector *cvs_strsplit(char *, const char *); ! ! void cvs_argv_destroy(struct cvs_argvector *); #endif /* UTIL_H */