]> git.saurik.com Git - apple/ld64.git/blob - FireOpal/unit-tests/test-cases/cfstring-coalesce/foo.c
ld64-85.2.1.tar.gz
[apple/ld64.git] / FireOpal / unit-tests / test-cases / cfstring-coalesce / foo.c
1 #include <CoreFoundation/CFString.h>
2
3 extern void bar();
4
5 void foo()
6 {
7 CFStringGetLength(CFSTR("hello"));
8 CFStringGetLength(CFSTR("world"));
9 }
10
11
12 int main()
13 {
14 CFStringGetLength(CFSTR("live"));
15 bar();
16 return 0;
17 }
18
19