Files
swift-mirror/test/Interop/C/swiftify-import/Inputs/module.modulemap
Henrik G. Olsson e252cbbaeb [SwiftifyImport] Add sizedBy support for OpaquePointer (#78315)
This makes it possible to mark a pointer with __sized_by when the
pointee type definition is not included. The wrapper function has the
same interface as if the parameter were a void pointer, since the stdlib
has no `OpaqueBufferPointer` type.

* use swift-ide-test for checking interop signatures
* add xfail test for Span + Optional combo (Optional requires Escapable)
2025-01-03 10:09:49 -08:00

10 lines
127 B
Plaintext

module CountedByClang {
header "counted-by.h"
export *
}
module SizedByClang {
header "sized-by.h"
export *
}