2022-10-10 09:18:57 -07:00

11 lines
248 B
C

#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);
}