Exemplo n.º 1
0
static HParser *bytes(HAllocator *mm__, size_t n)
{
    return h_action__m(mm__, h_repeat_n__m(mm__, h_uint8__m(mm__), n),
                             act_bytes, NULL);
}
Exemplo n.º 2
0
const HParser* h_repeat_n(const HParser* p, const size_t n) {
  return h_repeat_n__m(&system_allocator, p, n);
}