Frage

what is the ending delimiter of string used through stralloc function in qmail(MTA) code???

stralloc str;
stralloc_copys(&str,"testing");
printf("%s\n", str.s);

It actually prints

testingZjklfjndf

What is the correct way to print the content???

War es hilfreich?

Lösung

As such there is no delimiter but you can find Z at the end of every string stored by stralloc. the data stored in stralloc is looked-up though len only.

and as ansh already mentioned dont try to print the data through printf instead run a for loop for len times on the string.

for more reference: http://cr.yp.to/lib/stralloc.html

Andere Tipps

in stralloc \0 is also a valid content so dont try to print the data through printf

stralloc_0 will terminate the rest of the things after Z. But when u want to print , print till str.len.

Lizenziert unter: CC-BY-SA mit Zuschreibung
Nicht verbunden mit StackOverflow
scroll top