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