repo.or.cz
/
agg.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Renaming and documenting bugs.
[agg.git]
/
stack.h
blob
bd9029f23a411f5d7aad60f0993df7be021c82a5
1
#ifndef AGG_STACK_H
2
#define AGG_STACK_H
3
4
#include
"layer.h"
5
6
void
stack_set
(
unsigned
i
,
struct
Layer l
);
7
void
stack_next
();
8
void
stack_prev
();
9
const struct
Layer
*
stack_top
();
10
11
#endif