aboutsummaryrefslogtreecommitdiff
path: root/qtest.c
diff options
context:
space:
mode:
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