Random string of required length */
| 76 | |
| 77 | /* Random string of required length */ |
| 78 | static char *namelen(int len) |
| 79 | { |
| 80 | char *p = malloc(len); |
| 81 | memset(p, 'x', len-1); |
| 82 | p[len-1] = '\0'; |
| 83 | return p; |
| 84 | } |
| 85 | |
| 86 | static struct node *read_nodes(FILE *f) |
| 87 | { |