예제 #1
0
파일: tox.c 프로젝트: askielboe/toxcore
int tox_get_self_name_size(const Tox *tox)
{
    const Messenger *m = tox;
    return m_get_self_name_size(m);
}
예제 #2
0
파일: tox.c 프로젝트: Jman012/toxcore
int tox_get_self_name_size(Tox *tox)
{
    Messenger *m = tox;
    return m_get_self_name_size(m);
}