beginner here. I'm writing a wrap function in C which is working OK if all the words from the string I pass are smaller than the size of the line I define. e.g.: if I want to wrap after 20 characters and pass a 21 characters word it doesn't wrap.
What I actually want to do is to add a hyphen at the end of the line if I pass a long word (longer than defined line size) and carry on on the next line. I have researched and found a lot of websites with wrap functions, but none of them showed how to insert the hyphen, so could you guys help me out? Could you show me a example with inserting hyphens or point me on the right direction please? Thanks in advance!
My wrapping function:
int wordwrap(char **string, int linesize)
{
char *head = *string;
char *buffer = malloc(strlen(head) + 1);
int offset = linesize;
int lastspace = 0;
int pos = 0;
while(head[pos] != '\0')
{
if(head[pos] == ' ')
{
lastspace = pos;
}
buffer[pos] = head[pos];
pos++;
if(pos == linesize)
{
if(lastspace != 0)
{
buffer[lastspace] = '\n';
linesize = lastspace + offset;
lastspace = 0;
}
else
{
//insert hyphen here?
}
}
}
*string = buffer;
return;
}
My main function:
#include <stdio.h>
#include <string.h>
int main(void)
{
char *text = strdup("Hello there, this is a really long string and I do not like it. So please wrap it at 20 characters and do not forget to insert hyphen when appropriate.");
wordwrap(&text, 20);
printf("\nThis is my modified string:\n'%s'\n", text);
return 0;
}