summaryrefslogtreecommitdiff
path: root/pkg/macos/text/ext.c
blob: 55bff8a612c9307831cc6fd98e5f89dc6948d604 (plain)
1
2
3
4
5
6
7
8
9
10
#include <CoreText/CoreText.h>

// A wrapper to fix a Zig C ABI issue.
void zig_cabi_CTLineGetBoundsWithOptions(
    CTLineRef line,
    CTLineBoundsOptions options,
    CGRect *result
) {
    *result = CTLineGetBoundsWithOptions(line, options);
}