| 875 | */ |
| 876 | |
| 877 | static _cups_ps_obj_t * /* O - New object */ |
| 878 | index_stack(_cups_ps_stack_t *st, /* I - Stack */ |
| 879 | int n) /* I - Object index */ |
| 880 | { |
| 881 | if (n < 0 || (n = st->num_objs - n - 1) < 0) |
| 882 | return (NULL); |
| 883 | |
| 884 | return (push_stack(st, st->objs + n)); |
| 885 | } |
| 886 | |
| 887 | |
| 888 | /* |
no test coverage detected