When developing a kernel module in Linux, using the C standard library isn\'t allowed. However, in case I need to use some common functionality like strcat()
strcat()
Sorry @eq - thinking of another function.
Why not
void (char *d, const char *s); { if (*d) { for (; *d; ++d) {} ; --d; } strcpy(d, s); }
I could do strcpy if you wish
strcpy