static void vep_emit_verbatim(const struct vep_state *vep, ssize_t l, ssize_t l_crc) { uint8_t buf[4]; vep_emit_len(vep, l, VEC_V1, VEC_V2, VEC_V8); if (vep->dogzip) { vep_emit_len(vep, l_crc, VEC_C1, VEC_C2, VEC_C8); vbe32enc(buf, vep->crc); VSB_bcat(vep->vsb, buf, sizeof buf); } }
static void vep_emit_verbatim(const struct vep_state *vep, ssize_t l, ssize_t l_crc) { uint8_t buf[4]; if (params->esi_syntax & 0x20) { Debug("---> VERBATIM(%jd)\n", (intmax_t)l); } vep_emit_len(vep, l, VEC_V1, VEC_V2, VEC_V8); if (vep->dogzip) { vep_emit_len(vep, l_crc, VEC_C1, VEC_C2, VEC_C8); vbe32enc(buf, vep->crc); VSB_bcat(vep->vsb, buf, sizeof buf); } }
static void vep_emit_skip(const struct vep_state *vep, ssize_t l) { if (params->esi_syntax & 0x20) { Debug("---> SKIP(%jd)\n", (intmax_t)l); } vep_emit_len(vep, l, VEC_S1, VEC_S2, VEC_S8); }
static void vep_emit_skip(const struct vep_state *vep, ssize_t l) { vep_emit_len(vep, l, VEC_S1, VEC_S2, VEC_S8); }