I have previously asked a question, which is somewhat related to the present one, however, Please help a bit more.
As I understand it, from this link, I should be able to use redirect.stdin to a named pipe, then use a putc or binary write command to the pipe, and write unformatted data to it.
Nonetheless, I would love, that on the other end, a parallely running fortran process reads form one pipe, to which my D code writes in, and writes to another, from which i can read off, while in the D code.
Now problem is I don't find much information about named pipes in Fortran.
Before I use a C interface, to Fortran, is there any way to read pipes and write on a separate parallel pipe from Fortran?
EDIT: thanks for the hints, I sorted it.