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