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