Lines Matching defs:links
21 "link Zero or more links to check against, the order of\n\t"
23 " 1) An exact match for the real path (if no links), or\n\t\t"
24 " 2) An exact match for any of the links (aliases), or\n\t\t"
58 char **links = NULL;
91 /* Count links */
96 links = calloc(num_links + 1, sizeof(char *));
98 if (!links) {
104 links[num_links] = strdup(argv[i]);
105 if (!links[num_links]) {
126 (const char **)links, mode);
129 (const char **)links, mode);
154 if (links) {
155 for (i = 0; links[i]; i++)
156 free(links[i]);
157 free(links);