Skip to content
This repository was archived by the owner on Oct 12, 2022. It is now read-only.
/ druntime Public archive
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/core/sys/posix/iconv.d
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ iconv_t iconv_open (in char* tocode, in char* fromcode);
/// Convert at most *INBYTESLEFT bytes from *INBUF according to the
/// code conversion algorithm specified by CD and place up to
/// *OUTBYTESLEFT bytes in buffer at *OUTBUF.
size_t iconv (iconv_t cd, char** inbuf,
size_t iconv (iconv_t cd, in char** inbuf,
size_t* inbytesleft,
char** outbuf,
size_t* outbytesleft);
Expand Down