28 Mar
2013
28 Mar
'13
2:15 p.m.
Rolf Rabenseifner wrote:
Can I summarize your analysis to: - 2 routines with CHARACTER(LEN=*),INTENT(OUT) arguments These routines works with non-BIND(C) and BIND(C), because the application must provide a string-buffer that is large enough.
Except that LEN=* is not permitted with Bind(C), either. For Bind(C), using CHARACTER(len=1),dimension(*) would be fine, though. Tobias