aboutsummaryrefslogtreecommitdiff
path: root/qtest.c
diff options
context:
space:
mode:
authorBen Burwell <ben@benburwell.com>2015-04-01 20:29:53 -0400
committerBen Burwell <ben@benburwell.com>2015-04-01 20:29:53 -0400
commit2b30f30a330ee9bc9feb9ec4e55c8b6f3e6eb8fe (patch)
tree08d7be1d815e1ae676eab5c734438ba048b854d1 /qtest.c
parente282a861d5868868940b449681f2ee5da3e439e8 (diff)
as of 2013-11-182013-11-18
Diffstat (limited to 'qtest.c')
-rw-r--r--qtest.c19
1 files changed, 19 insertions, 0 deletions
diff --git a/qtest.c b/qtest.c
new file mode 100644
index 0000000..a0e97d0
--- /dev/null
+++ b/qtest.c
@@ -0,0 +1,19 @@
+#include <stdio.h>
+#include "mpx.h"
+
+int main() {
+ dcb com;
+ char c;
+
+ dcb_init(&com);
+
+ for (c = 'a'; c <= 'z'; c++) {
+ dcb_enqueue(&com, c);
+ }
+
+ for (c = 'a'; c <= 'z' + 2; c++) {
+ printf("Dequeueing %c \n", dcb_dequeue(&com));
+ }
+
+ return 0;
+} \ No newline at end of file