summaryrefslogtreecommitdiff
path: root/gnu/dist/xcvs/src/stack.h
diff options
context:
space:
mode:
authorchristos <christos@NetBSD.org>2006-02-04 15:52:40 +0000
committerchristos <christos@NetBSD.org>2006-02-04 15:52:40 +0000
commitc43c5d6f666aa613f4fad21029ed13699224005c (patch)
tree64c1c703d4f8c153ea29cca7087d9a36be3f7bd9 /gnu/dist/xcvs/src/stack.h
parent25e557419f495b86c7d8de2e489a768ff11e5441 (diff)
Import CVS-1.11.21: See the NEWS files for changes from 1.11.20
Diffstat (limited to 'gnu/dist/xcvs/src/stack.h')
-rw-r--r--gnu/dist/xcvs/src/stack.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/gnu/dist/xcvs/src/stack.h b/gnu/dist/xcvs/src/stack.h
new file mode 100644
index 00000000000..822010bbe4a
--- /dev/null
+++ b/gnu/dist/xcvs/src/stack.h
@@ -0,0 +1,17 @@
+/*
+ * Copyright (c) 2004-2005 The Free Software Foundation,
+ * Derek Price, and Ximbiot <http://ximbiot.com>.
+ *
+ * You may distribute under the terms of the GNU General Public License as
+ * specified in the README file that comes with the CVS source distribution.
+ */
+
+void push PROTO((List *_stack, void *_elem));
+void *pop PROTO((List *_stack));
+void unshift PROTO((List *_stack, void *_elem));
+void *shift PROTO((List *_stack));
+void push_string PROTO((List *_stack, char *_elem));
+char *pop_string PROTO((List *_stack));
+void unshift_string PROTO((List *_stack, char *_elem));
+char *shift_string PROTO((List *_stack));
+int isempty PROTO((List *_stack));