• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

LICENSEH A D16-Jun-20181 KiB

README.mdH A D16-Jun-2018773

minitox.cH A D16-Jun-201839.9 KiB

README.md

1# MiniTox
2
3![minitox](https://raw.github.com/hqwrong/minitox/master/minitox.jpeg "minitox")
4
5`minitox` is a minimal client written for
6[toxcore](https://github.com/TokTok/c-toxcore). It's an example of tox client
7implementation and also a toy which new developers coming to tox can play and
8start with, therefore getting familiar with the project.
9
10## Features
11
121. Single File and Small Codebase;
132. Fully Standalone(No 3rd library needed, only rely on toxcore and system c lib);
143. Covered most apis of Friend&Group, and more to go;
154. Fun to play with(Colored text, Async REPL, etc.).
16
17## Build
18
19The only lib required is [toxcore](https://github.com/TokTok/c-toxcore):
20
21```sh
22$ gcc -o minitox minitox.c -I $TOX_H_DIR -L $TOX_LIB_DIR -Wl,-rpath $TOX_LIB_DIR -ltoxcore
23```
24