#include #include const char testline[] = { " Dies ist ein Test." }; int main(void) { const char *text; size_t i; for (i = 0; i < 6; i++) { text = dk4str8_skip(testline, i); printf("%u \"%s\"\n", (unsigned)i, ((NULL != text) ? text : "(NULL)")); } return 0; }