예제 #1
0
파일: ta.c 프로젝트: JamesLinus/dcadec
static struct ta_header *get_header(void *ptr)
{
    return ptr ? PTR_TO_HEADER(ptr) : NULL;
}
예제 #2
0
파일: ta.c 프로젝트: Akemi/mpv
static struct ta_header *get_header(void *ptr)
{
    struct ta_header *h = ptr ? PTR_TO_HEADER(ptr) : NULL;
    ta_dbg_check_header(h);
    return h;
}