| 915 | */ |
| 916 | |
| 917 | static _cups_ps_obj_t * /* O - Object */ |
| 918 | pop_stack(_cups_ps_stack_t *st) /* I - Stack */ |
| 919 | { |
| 920 | if (st->num_objs > 0) |
| 921 | { |
| 922 | st->num_objs --; |
| 923 | |
| 924 | return (st->objs + st->num_objs); |
| 925 | } |
| 926 | else |
| 927 | return (NULL); |
| 928 | } |
| 929 | |
| 930 | |
| 931 | /* |
no outgoing calls
no test coverage detected