diff options
author | Ben Burwell <ben@benburwell.com> | 2015-04-01 20:32:27 -0400 |
---|---|---|
committer | Ben Burwell <ben@benburwell.com> | 2015-04-01 20:32:27 -0400 |
commit | 684fc27f6389f44102b5a3b31f62badc35a9a9ce (patch) | |
tree | 016c28c9b7501475bff2075ba660477e7eec491d /qtest.c | |
parent | 2b30f30a330ee9bc9feb9ec4e55c8b6f3e6eb8fe (diff) |
as of 2013-12-042013-12-04
Diffstat (limited to 'qtest.c')
-rw-r--r-- | qtest.c | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/qtest.c b/qtest.c deleted file mode 100644 index a0e97d0..0000000 --- a/qtest.c +++ /dev/null @@ -1,19 +0,0 @@ -#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 |