These are the core system libraries of ToaruOS. Where functionality isn't expected in the C standard library, these provide additional features that are shared by multiple ToaruOS applications.
## `toaru_auth`
Provides password validation and login helper methods. Exists primarily because `libc` doesn't have these things and there are multiple places where logins are checked (`login`, `glogin`, `sudo`, `gsudo`...).
## `toaru_button`
Renderer for button widgets. Not really a widget library at the moment.
## `toaru_confreader`
Implements a basic INI parser for use with configuration files.
## `toaru_decorations`
Client-side decoration library for the compositor. Supports pluggable decoration themes through additional libraries, which are named as `libtoaru_decor-...`.
## `toaru_graphics`
General-purpose 2D drawing and pixel-pushing library. Provides sprite blitting, rotation, scaling, etc.
## `toaru_hashmap`
Generic hashmap implementation. Also used by the kernel.
## `toaru_iconcache`
Convenience library for loading icons at specific sizes.