back to scratko.xyz
summaryrefslogtreecommitdiff
path: root/queue.c
blob: 861f1e5bc50da7a2a322a314e2f65d2e4f019baa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
#include "queue.h"
#include <stdlib.h>

void queue_init(struct queue *q)
{
    q->first = NULL;
    q->last = NULL;
}

void queue_push(struct queue *q, char *word)
{
    struct word_item *tmp = malloc(sizeof(struct word_item));
    tmp->word = word;
    tmp->next = NULL;
    if(!q->first) {
        q->first = tmp;
        q->last = q->first;
    } else {
        q->last->next = tmp;
        q->last = q->last->next;
    }
}

void queue_clear(struct queue *q)
{
    struct word_item *tmp;
    while(q->first) {
        tmp = q->first;
        q->first = q->first->next;
        free(tmp->word);
        free(tmp);
    }
    q->last = NULL;
}

void queue_processing(const struct queue *q, void (*callback)(char*))
{
    struct word_item *tmp;
    tmp = q->first;
    while(tmp) {
        callback(tmp->word);
        tmp = tmp->next;
    }
}