summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.76.0/tests/expected/c/01002-mod-paren.c
blob: 2537330faa5ce524dc3330242580231432f5375a (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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
int foo(int a, int b)
{
   if (!(a || b))
   {
      return 1;
   }
   return 0;
}

void fooo()
{
   if (enabled)
   {
      value = 1;
   }

   if (enabled && (value == 100))
   {
   }

   if (value == 100)
   {
   }

   if ((value == 100) && (i < 15) || enabled)
   {
   }

   if (!failed && ((value == 100) && (i < 15)) || enabled)
   {
   }
}

void foo3()
{
   if ((strcmp(a, b) == 0) && (total < 5))
   {
      add_item(a);
   }

   if (glob_add_path(gd, gd->dir, NULL,
                     (flags & GLOB_MARK) && S_ISDIR(gd->st.st_mode)) != 0)
   {
      bar();
   }
   return;
}

int foo1(void)
{
   FOO_ERROR("connect: can only connected from state CLOSED", pcb->state == CLOSED, return ERR_ISCONN);
   return ERR_OK;
}

int foo2(void)
{
   return -1;
}

void foo(void)
{
   if (!value
#ifdef OPTION
       || value == SOMECONST
#endif /* comment */
       )
   {
   }
}

void foo3(void)
{
   if ((*p == '-') && (p[1] != ']') ?
       (*text <= *++p) && (*text >= last) : (*text == *p))
   {
      matched = TRUE;
   }
}