Last change
on this file since 485cf59 was
5546f50b,
checked in by Peter A. Buhr <pabuhr@…>, 8 months ago
|
more switch to tabs
|
-
Property mode set to
100644
|
File size:
304 bytes
|
Line | |
---|
1 | #include <string.hfa> |
---|
2 | #include <string_sharectx.hfa> |
---|
3 | |
---|
4 | void a() {} |
---|
5 | void b() {} |
---|
6 | void c() {} |
---|
7 | void d() {} |
---|
8 | void e() {} |
---|
9 | |
---|
10 | |
---|
11 | |
---|
12 | |
---|
13 | |
---|
14 | |
---|
15 | |
---|
16 | |
---|
17 | |
---|
18 | |
---|
19 | |
---|
20 | void helper2() { |
---|
21 | c(); |
---|
22 | string_sharectx c = {NEW_SHARING}; |
---|
23 | d(); |
---|
24 | } |
---|
25 | void helper1() { |
---|
26 | a(); |
---|
27 | string_sharectx c = {NO_SHARING}; |
---|
28 | b(); |
---|
29 | helper2(); |
---|
30 | e(); |
---|
31 | } |
---|
32 | int main() { |
---|
33 | helper1(); |
---|
34 | } |
---|
35 | |
---|
Note: See
TracBrowser
for help on using the repository browser.