mirror of
https://github.com/ghostty-org/ghostty.git
synced 2025-04-21 00:48:36 +03:00
11 lines
248 B
C
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);
|
|
}
|