tasks a-s

This commit is contained in:
Ingy döt Net 2013-04-10 23:57:08 -07:00
parent 47bf37c096
commit b83f433714
12433 changed files with 156208 additions and 123 deletions

View file

@ -0,0 +1,31 @@
#include <stdio.h>
#include <stdlib.h>
#include <stdbool.h>
#include <sys/queue.h>
/* #include "fifolist.h" */
int main()
{
int i;
FIFOList head;
TAILQ_INIT(&head);
/* insert 20 integer values */
for(i=0; i < 20; i++) {
m_enqueue(i, &head);
}
/* dequeue and print */
while( m_dequeue(&i, &head) )
printf("%d\n", i);
fprintf(stderr, "FIFO list %s\n",
( m_dequeue(&i, &head) ) ?
"had still an element" :
"is void!");
exit(0);
}