aboutsummaryrefslogtreecommitdiff
path: root/src/lib/q.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/q.h')
-rw-r--r--src/lib/q.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/lib/q.h b/src/lib/q.h
index 51ff1a1..cf75c6d 100644
--- a/src/lib/q.h
+++ b/src/lib/q.h
@@ -11,11 +11,11 @@ struct Q {
void* data;
};
-struct Q_base* newq();
-void pushq(struct Q_base* qb, void* val);
-void popq(struct Q_base* qb);
+struct Q_base* new_q();
+void push_q(struct Q_base* qb, void* val);
+void pop_q(struct Q_base* qb);
-#define showq(QQ, TYPE) { \
+#define show_q(QQ, TYPE) { \
if (QQ->next != 0) { \
struct Q* t = QQ->next; \
while (t->next != 0) { \