Some bugs are in your code
- You pass a string literal, which is not guaranteed to be writable. It is in fact undefined behaivor to write to them
- You need to document for your function that extra memory should be provided for the padding characters.
You can fix them by allocating memory in the caller. But consider the performance lost you gain by using malloc, since it dynamically fetches memory from the OS. But actually, most of the time, you won't notice this as malloc & free is usually buffered and highly optimized for many calls until a new system call is made. Here is how you could do it:
char * string_pad(char * string, size_t padlen, char * pad) {
size_t lenstring = strlen(string);
size_t lenpad = strlen(pad);
char * padded = (char*)malloc(lenstring + lenpad + 1);
strncpy(padded, string, lenstring); /* copy without '\0' */
padded += lenstring; /* prepare for first append of pad */
for(padlen += 1; padlen > 0; padlen--, padded += lenpad)
strncpy(padded, pad, lenpad);
*padded = '\0';
return padded;
}
Edit: I figured the length parameter means something else in your snippet. Never mentioned :) I will leave this commentar here anyway as a community wiki. Maybe someone can make use of it.