On 2 Jun 2013, at 16:48, Brandon Allbery <allbery.b@gmail.com> wrote:(String is a linked list of Char, which is also not a C char; it is a constructor and a machine word large enough to hold a Unicode codepoint. And because Haskell is non-strict, any part of that linked list can be an unevaluated thunk which requires forcing the evaluation of arbitrary Haskell code elsewhere to "reify" the value; this obviously cannot be done in the middle of random C code, so it must be done during marshalling.)I'm not convinced that that's "obvious" – though it certainly requires functions (that go through the FFI) to grab each character at a time.