diff options
Diffstat (limited to 'usr.bin/cvs/cvs.h')
-rw-r--r-- | usr.bin/cvs/cvs.h | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/usr.bin/cvs/cvs.h b/usr.bin/cvs/cvs.h index 0a5b5120619..dff9c9f95ce 100644 --- a/usr.bin/cvs/cvs.h +++ b/usr.bin/cvs/cvs.h @@ -1,4 +1,4 @@ -/* $OpenBSD: cvs.h,v 1.1 2004/07/13 22:02:40 jfb Exp $ */ +/* $OpenBSD: cvs.h,v 1.2 2004/07/14 03:33:09 jfb Exp $ */ /* * Copyright (c) 2004 Jean-Francois Brousseau <jfb@openbsd.org> * All rights reserved. @@ -318,6 +318,7 @@ const char* cvs_req_getbyid (int); int cvs_req_getbyname (const char *); char* cvs_req_getvalid (void); + int cvs_resp_handle (char *); const char* cvs_resp_getbyid (int); int cvs_resp_getbyname (const char *); @@ -345,6 +346,13 @@ void cvsroot_free (struct cvsroot *); struct cvsroot* cvsroot_get (const char *); +int cvs_file_init (void); +int cvs_file_ignore (const char *); +int cvs_file_isignored (const char *); +char** cvs_file_getv (const char *, int *); +void cvs_file_free (char **, int); + + /* Entries API */ CVSENTRIES* cvs_ent_open (const char *); struct cvs_ent* cvs_ent_get (CVSENTRIES *, const char *); |