]> gitweb @ CieloNegro.org - bindings-CoreFoundation.git/blob - cbits/helper_CFCharacterSet.c
CFCharacterSet.h
[bindings-CoreFoundation.git] / cbits / helper_CFCharacterSet.c
1 #include <bindings.cmacros.h>
2 #include <CoreFoundation/CFCharacterSet.h>
3
4 CFCharacterSetRef
5 inline_CFCharacterSetCreateWithCharactersInRange(CFAllocatorRef alloc,
6                                                  CFRange* theRange) {
7     return CFCharacterSetCreateWithCharactersInRange(alloc, *theRange);
8 }
9
10 void
11 inline_CFCharacterSetAddCharactersInRange(CFMutableCharacterSetRef theSet,
12                                           CFRange* theRange) {
13     return CFCharacterSetAddCharactersInRange(theSet, *theRange);
14 }
15
16 void
17 inline_CFCharacterSetRemoveCharactersInRange(CFMutableCharacterSetRef theSet,
18                                              CFRange* theRange) {
19     return CFCharacterSetRemoveCharactersInRange(theSet, *theRange);
20 }