| 130 | } |
| 131 | |
| 132 | void quicklistSetOptions(quicklist *quicklist, int fill, int depth) { |
| 133 | quicklistSetFill(quicklist, fill); |
| 134 | quicklistSetCompressDepth(quicklist, depth); |
| 135 | } |
| 136 | |
| 137 | /* Create a new quicklist with some default parameters. */ |
| 138 | quicklist *quicklistNew(int fill, int compress) { |
no test coverage detected