Esempio n. 1
0
HParser* h_action(const HParser* p, const HAction a, void* user_data) {
  return h_action__m(&system_allocator, p, a, user_data);
}
Esempio n. 2
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);
}
Esempio n. 3
0
const HParser* h_action(const HParser* p, const HAction a) {
  return h_action__m(&system_allocator, p, a);
}