X-Git-Url: http://git.ozlabs.org/?p=ccan;a=blobdiff_plain;f=ccan%2Frfc822%2F_info;h=5a0a9c6a6080c050c35095867019026d0ce02ce5;hp=17ad934f45dbec577ef766898d3de140d5f054ab;hb=b87f63cb8228c8fcbf760defdcf9e4c332da7667;hpb=cf4e2150325ebab7798c23110d80ff52467b4fc7 diff --git a/ccan/rfc822/_info b/ccan/rfc822/_info index 17ad934f..5a0a9c6a 100644 --- a/ccan/rfc822/_info +++ b/ccan/rfc822/_info @@ -20,16 +20,32 @@ * RFC822 compliant, don't SEGV and try to return as much useful * data as possible. * + * Define TAL_USE_TALLOC to use libtalloc as the allocator, otherwise + * it will use ccan/tal (usually done on the cmdline, as tal/str will need + * it too). + * * Example: + * // Outputs "body\n" + * // Given "From" outputs + * // Given "To" outputs * char buf[] = "From: \n" * "To: \n\n" * "body\n"; * struct rfc822_msg *msg; - * struct bytestring body; + * struct bytestring out; * * msg = rfc822_start(NULL, buf, sizeof(buf)); - * body = rfc822_body(msg); - * fwrite(body.ptr, 1, body.len, stdout); + * if (!argv[1]) + * out = rfc822_body(msg); + * else { + * struct rfc822_header *hdr; + * hdr = rfc822_first_header_of_name(msg, argv[1]); + * if (!hdr) + * exit(1); + * out = rfc822_header_unfolded_value(msg, hdr); + * } + * fwrite(out.ptr, 1, out.len, stdout); + * rfc822_free(msg); * * License: LGPL (v2.1 or any later version) * @@ -41,10 +57,15 @@ int main(int argc, char *argv[]) return 1; if (strcmp(argv[1], "depends") == 0) { - printf("ccan/talloc\n"); +#ifdef TAL_USE_TALLOC + printf("ccan/tal/talloc\n"); +#else + printf("ccan/tal\n"); +#endif printf("ccan/list\n"); printf("ccan/str\n"); printf("ccan/bytestring\n"); + printf("ccan/mem\n"); return 0; } @@ -52,6 +73,7 @@ int main(int argc, char *argv[]) printf("ccan/failtest\n"); printf("ccan/foreach\n"); printf("ccan/array_size\n"); + printf("ccan/tal/str\n"); return 0; }