使用 C 標準庫
Swift 的 C 互操作性允許你使用 C 標準庫中的函式和型別。
在 Linux 上,C 標準庫通過 Glibc
模組公開; 在 Apple 平臺上,它被稱為 Darwin
。
#if os(macOS) || os(iOS) || os(tvOS) || os(watchOS)
import Darwin
#elseif os(Linux)
import Glibc
#endif
// use open(), read(), and other libc features