mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
9 lines
256 B
C
9 lines
256 B
C
void read_char(const char *input);
|
|
void read_uchar(const unsigned char *input);
|
|
void read_void(const void *input);
|
|
void write_char(char *input);
|
|
void write_uchar(unsigned char *input);
|
|
void write_void(void *input);
|
|
|
|
void take_opaque_pointer(const void *);
|