Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/rainbow/nss/test_slist.c
blob: 138adf4bb187a7239c7096b5f916149e2e08d9c6 (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
45
46
#include <stdio.h>
#include <stdint.h>
#include <stddef.h>
#include <stdbool.h>

#include "slist.h"

struct node {
  int id;
  struct slist list;
};

void node_init(struct node* self) {
  self->id = 0;
  slist_init(&self->list);
}

void node_print(struct node* self) {
  printf("node %d\n", self->id);
}

int find_two(struct node* self) {
  if (self->id == 2) return 0; else return 1;
}

int main() {
  struct node h, a, b, c;
  node_init(&h); a.id = 0;
  node_init(&a); a.id = 1;
  node_init(&b); b.id = 2;
  node_init(&c); c.id = 3;
  slist_extend(&h.list, &a.list);
  slist_extend(&a.list, &b.list);
  slist_extend(&b.list, &c.list);

  slist_for(struct node, list, &h, &node_print);
  slist_search(struct node, list, &h, found, not_found, &find_two);

found:
  printf("found two\n");
  return 0;

not_found:
  printf("two not found\n");
  return 1;
}