1Introduction
2============
3
4libi3 is an *INTERNAL* library which contains functions that i3 and related
5tools (i3-msg, i3-input, i3-nagbar, i3-config-wizard, i3bar) use.
6
7It is NOT to be used by other programs.
8
9Structure
10=========
11
12Every function gets its own .c file, which in turn gets compiled into an .o
13object file. Afterwards, all .o files are archived into one static library
14(libi3.a). This library will be linked into all i3 binaries. The linker is able
15to eliminate unused .o files when linking, so only the functions which you
16actually use will be included in the corresponding binary.
17