Re: [GSoC][PATCH 03/13] submodule: port set_name_rev() from shell to C From: Brandon Williams <hidden> Date: 2017-07-24 20:54:34 On 07/25, Prathamesh Chavan wrote:+static int print_name_rev(int argc, const char **argv, const char *prefix) +{ + char *namerev; + if (argc != 3) + die("print-name-rev only accepts two arguments: <path> <sha1>"); + + namerev = get_name_rev(argv[1], argv[2]); + if (namerev && namerev[0]) + printf(" (%s)", namerev); + printf("\n"); + 'namerev' needs to be freed at the end of this function. + return 0; +} + -- Brandon Williams
Keyboard shortcuts hback out one level jnext message in thread kprevious message in thread ldrill in Escclose help / fold thread tree ?toggle this help