Archived
1
0
Fork 0

queue: fixed API function name to follow spec.

This commit is contained in:
Henrik Hautakoski 2010-09-25 18:05:30 +02:00
parent 26b1f73f8f
commit ed428f20c9
3 changed files with 3 additions and 3 deletions

View file

@ -6,7 +6,7 @@
int main() {
int i, map[10] = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9};
queue_t q = init_queue();
queue_t q = queue_init();
for(i=0; i < 10; i++)
queue_enqueue(q, &map[i]);