* tools/generate-api-docs.c: add initialize for private function names --- tools/generate-api-docs.c | 13 +++++++++---- 1 files changed, 9 insertions(+), 4 deletions(-) diff --git a/tools/generate-api-docs.c b/tools/generate-api-docs.c index 322f3ef..8a16e22 100644 --- a/tools/generate-api-docs.c +++ b/tools/generate-api-docs.c @@ -43,10 +43,15 @@ void parse_comment(char *line, int func_num, int *arg_num) if (strncmp(ltrimmed, "Function name:", 14) == 0) { functions[func_num].name = strdup( ltrim_string( ltrimmed + 14) ); } - else - if (strncmp(ltrimmed, "Description:", 12) == 0) { - functions[func_num].desc = strdup( ltrim_string( ltrimmed + 12) ); - } + else + if (strncmp(ltrimmed, "Private function name:", 22) == 0) + { + functions[func_num].name = NULL; + } + else + if (strncmp(ltrimmed, "Description:", 12) == 0) { + functions[func_num].desc = strdup( ltrim_string( ltrimmed + 12) ); + } else if (strncmp(ltrimmed, "Arguments:", 10) == 0) { char *str = ltrim_string(ltrimmed + 11); -- 1.7.1 -- libvir-list mailing list libvir-list@xxxxxxxxxx https://www.redhat.com/mailman/listinfo/libvir-list