diff options
author | peter <peter@FreeBSD.org> | 2004-04-15 01:01:56 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 2004-04-15 01:01:56 +0000 |
commit | 3aa249bff61808355fd6b864b94fd531fd00b3b7 (patch) | |
tree | 48f5bc180abb032c255cbad668a4838647de32f2 /contrib/cvs/src/stack.h | |
parent | dfd3c578a82a6f926669c53ec72c55f7aba93228 (diff) | |
parent | 6045cae71a438a752980a395f03717a13cc22179 (diff) | |
download | FreeBSD-src-3aa249bff61808355fd6b864b94fd531fd00b3b7.zip FreeBSD-src-3aa249bff61808355fd6b864b94fd531fd00b3b7.tar.gz |
This commit was generated by cvs2svn to compensate for changes in r128266,
which included commits to RCS files with non-trunk default branches.
Diffstat (limited to 'contrib/cvs/src/stack.h')
-rw-r--r-- | contrib/cvs/src/stack.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/contrib/cvs/src/stack.h b/contrib/cvs/src/stack.h new file mode 100644 index 0000000..49ebdf8 --- /dev/null +++ b/contrib/cvs/src/stack.h @@ -0,0 +1,18 @@ +/* + * Copyright (c) 2004, Free Software Foundation, + * Derek Price, + * & 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)); |