llee wrote: > Does anyone know how to convert from character array pointers in c to d strings using Phobos? You can convert any pointer type to an array type using slicing. import std.c.string; char* cstr; string dstr = cstr[0..strlen(cstr)];