summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJean-Francois Brousseau <jfb@cvs.openbsd.org>2004-07-14 19:08:49 +0000
committerJean-Francois Brousseau <jfb@cvs.openbsd.org>2004-07-14 19:08:49 +0000
commit5264618f98d754cc9ef0bddc8152cb614d98b284 (patch)
tree1fad40a6363bf8226abb62e8bcbe079ebf147818
parent00a7b211a3a665bf26ccd5d64ad1761047c3d9c6 (diff)
prototype for cvs_ent_addln()
-rw-r--r--usr.bin/cvs/cvs.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/cvs/cvs.h b/usr.bin/cvs/cvs.h
index a84b001e814..f080e5e1046 100644
--- a/usr.bin/cvs/cvs.h
+++ b/usr.bin/cvs/cvs.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: cvs.h,v 1.4 2004/07/14 19:03:00 jfb Exp $ */
+/* $OpenBSD: cvs.h,v 1.5 2004/07/14 19:08:48 jfb Exp $ */
/*
* Copyright (c) 2004 Jean-Francois Brousseau <jfb@openbsd.org>
* All rights reserved.
@@ -358,6 +358,7 @@ CVSENTRIES* cvs_ent_open (const char *, int);
struct cvs_ent* cvs_ent_get (CVSENTRIES *, const char *);
struct cvs_ent* cvs_ent_next (CVSENTRIES *);
int cvs_ent_add (CVSENTRIES *, struct cvs_ent *);
+int cvs_ent_addln (CVSENTRIES *, const char *);
int cvs_ent_remove (CVSENTRIES *, const char *);
struct cvs_ent* cvs_ent_parse (const char *);
void cvs_ent_close (CVSENTRIES *);