toxcore/other/monolith.h
iphydf abc17b0f89
Factor out time keeping code into its own module: mono_time.c.
It turns out, `unix_time` is also monotonic, and is used as such, so I've
renamed the new functions to `mono_time_*`.

2018-07-08:
```
00:01 <@irungentoo> the idea used to be that the unix_time() function
  could go backward in time but I think I might have started using it like
  if it could not after I changed it so that it would never go back in time
```
2018-07-09 21:04:50 +00:00

39 lines
1.1 KiB
C

#include "../toxcore/tox.c"
#include "../toxcore/DHT.c"
#include "../toxcore/LAN_discovery.c"
#include "../toxcore/Messenger.c"
#include "../toxcore/TCP_client.c"
#include "../toxcore/TCP_connection.c"
#include "../toxcore/TCP_server.c"
#include "../toxcore/crypto_core.c"
#include "../toxcore/crypto_core_mem.c"
#include "../toxcore/friend_connection.c"
#include "../toxcore/friend_requests.c"
#include "../toxcore/group.c"
#include "../toxcore/list.c"
#include "../toxcore/logger.c"
#include "../toxcore/mono_time.c"
#include "../toxcore/network.c"
#include "../toxcore/net_crypto.c"
#include "../toxcore/onion.c"
#include "../toxcore/onion_announce.c"
#include "../toxcore/onion_client.c"
#include "../toxcore/ping.c"
#include "../toxcore/ping_array.c"
#include "../toxcore/state.c"
#include "../toxcore/tox_api.c"
#include "../toxcore/util.c"
#include "../toxav/audio.c"
#include "../toxav/bwcontroller.c"
#include "../toxav/groupav.c"
#include "../toxav/msi.c"
#include "../toxav/ring_buffer.c"
#include "../toxav/rtp.c"
#include "../toxav/toxav.c"
#include "../toxav/toxav_old.c"
#include "../toxav/video.c"
#include "../toxencryptsave/toxencryptsave.c"