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