X-Git-Url: http://git.ozlabs.org/?p=ccan;a=blobdiff_plain;f=ccan%2Fccan_tokenizer%2F_info;h=aef90fb91065e94097084718df66b782bc685b91;hp=8c3c9df2d9792a5656256d81282a4198a8b04b9b;hb=291237b4fed863be74051274ac5ad9920cb33cc3;hpb=3c81225fc0a4fb99d10282ebf11b7ec6ae1eabdd diff --git a/ccan/ccan_tokenizer/_info b/ccan/ccan_tokenizer/_info index 8c3c9df2..aef90fb9 100644 --- a/ccan/ccan_tokenizer/_info +++ b/ccan/ccan_tokenizer/_info @@ -1,6 +1,6 @@ +#include "config.h" #include #include -#include "config.h" /** * ccan_tokenizer - A full-text lexer for C source files @@ -14,7 +14,7 @@ * #include * #include * - * void token_list_stats(const struct token_list *tl) { + * static void token_list_stats(const struct token_list *tl) { * size_t comment=0, white=0, stray=0, code=0, total=0; * size_t count = 0; * const struct token *i; @@ -64,7 +64,7 @@ * err(1, "Could not read file %s", argv[1]); * * //tokenize the contents - * tl = tokenize(file, len, &mq); + * tl = tokenize(file, file, len, &mq); * * //print warnings, errors, etc. * while (queue_count(mq)) { @@ -81,6 +81,14 @@ * * return 0; * } + * + * License: BSD (3 clause) + * + * Ccanlint: + * // We actually depend on the LGPL dependencies + * license_depends_compat FAIL + * // We don't put the license line in all files. + * license_comment FAIL */ int main(int argc, char *argv[]) { @@ -89,7 +97,8 @@ int main(int argc, char *argv[]) return 1; if (strcmp(argv[1], "depends") == 0) { - printf("ccan/array\n"); + printf("ccan/darray\n"); + printf("ccan/talloc\n"); return 0; }