X-Git-Url: http://git.ozlabs.org/?p=ccan;a=blobdiff_plain;f=ccan%2Fgrab_file%2Fgrab_file.h;h=5d6d018c34e363ea530475ac8d0d3b65aed8fd2c;hp=5f7e37c6de004a634d04441dcdb031b197581cfd;hb=703cea0c78a896c658272af06306218fc0bb23cc;hpb=9965fc25fcc92dc76d1cd4cf9595dc3dc9ebc586 diff --git a/ccan/grab_file/grab_file.h b/ccan/grab_file/grab_file.h index 5f7e37c6..5d6d018c 100644 --- a/ccan/grab_file/grab_file.h +++ b/ccan/grab_file/grab_file.h @@ -14,15 +14,18 @@ * byte after the end of the content will always be NUL. * * Example: + * #include + * #include + * ... * // Return all of standard input, as lines. - * char **read_as_lines(void) + * static char **read_stdin_as_lines(void) * { * char **lines, *all; * * all = grab_fd(NULL, 0, NULL); * if (!all) * return NULL; - * lines = strsplit(NULL, all, "\n", NULL); + * lines = strsplit(NULL, all, "\n"); * talloc_free(all); * return lines; * } @@ -42,14 +45,14 @@ void *grab_fd(const void *ctx, int fd, size_t *size); * * Example: * // Return all of a given file, as lines. - * char **read_as_lines(const char *filename) + * static char **read_file_as_lines(const char *filename) * { * char **lines, *all; * * all = grab_file(NULL, filename, NULL); * if (!all) * return NULL; - * lines = strsplit(NULL, all, "\n", NULL); + * lines = strsplit(NULL, all, "\n"); * talloc_free(all); * return lines; * }