X-Git-Url: http://git.cielonegro.org/gitweb.cgi?p=bindings-CoreFoundation.git;a=blobdiff_plain;f=cbits%2Fhelper_CFCharacterSet.c;fp=cbits%2Fhelper_CFCharacterSet.c;h=cfd118a4532129acb4c8b09e262b888950403b6c;hp=0000000000000000000000000000000000000000;hb=74e9929e85ef6565e878d2a53e426f87a9d34ce2;hpb=25f68575512f3f7e110255dc1a201426d7665bcd diff --git a/cbits/helper_CFCharacterSet.c b/cbits/helper_CFCharacterSet.c new file mode 100644 index 0000000..cfd118a --- /dev/null +++ b/cbits/helper_CFCharacterSet.c @@ -0,0 +1,20 @@ +#include +#include + +CFCharacterSetRef +inline_CFCharacterSetCreateWithCharactersInRange(CFAllocatorRef alloc, + CFRange* theRange) { + return CFCharacterSetCreateWithCharactersInRange(alloc, *theRange); +} + +void +inline_CFCharacterSetAddCharactersInRange(CFMutableCharacterSetRef theSet, + CFRange* theRange) { + return CFCharacterSetAddCharactersInRange(theSet, *theRange); +} + +void +inline_CFCharacterSetRemoveCharactersInRange(CFMutableCharacterSetRef theSet, + CFRange* theRange) { + return CFCharacterSetRemoveCharactersInRange(theSet, *theRange); +}