예제 #1
0
HParser* h_action(const HParser* p, const HAction a, void* user_data) {
  return h_action__m(&system_allocator, p, a, user_data);
}
예제 #2
0
파일: application.c 프로젝트: AliBahar/dnp3
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);
}
예제 #3
0
파일: action.c 프로젝트: kmitwork/hammer
const HParser* h_action(const HParser* p, const HAction a) {
  return h_action__m(&system_allocator, p, a);
}