diff options
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 |