mirror of
https://github.com/TokTok/c-toxcore
synced 2026-05-06 17:56:14 +00:00
13 lines
275 B
C
13 lines
275 B
C
/*
|
|
* util.h -- Utilities.
|
|
*
|
|
* This file is donated to the Tox Project.
|
|
* Copyright 2013 plutooo
|
|
*/
|
|
|
|
uint64_t now();
|
|
uint64_t random_64b();
|
|
bool ipp_eq(IP_Port a, IP_Port b);
|
|
bool id_eq(clientid_t *dest, clientid_t *src);
|
|
void id_cpy(clientid_t *dest, clientid_t *src);
|