| 3152 | // |
| 3153 | |
| 3154 | static void gen_segment(const act* action) |
| 3155 | { |
| 3156 | blb* blob = (blb*) action->act_object; |
| 3157 | |
| 3158 | printa("", "%sisc_%d", |
| 3159 | (action->act_flags & ACT_first) ? COLUMN : CONTINUE, |
| 3160 | (action->act_type == ACT_segment) ? blob->blb_buff_ident : |
| 3161 | (action->act_type == ACT_segment_length) ? blob->blb_len_ident : blob->blb_ident); |
| 3162 | fputs(CONTINUE, gpreGlob.out_file); |
| 3163 | } |
| 3164 | |
| 3165 | |
| 3166 | //____________________________________________________________ |
no test coverage detected