[READ-ONLY] Mirror of https://github.com/bombshell-dev/tty. Platform independent 2D layout engine for terminal applications based on Clay
0

Configure Feed

Select the types of activity you want to include in your feed.

tty / src / module.c
274 B 13 lines
1/* module.c — single compilation unit for clayterm WASM module */ 2 3#include "../clay/clay.h" 4 5#include "mem.c" 6#include "buffer.c" 7#include "cell.c" 8#include "utf8.c" 9#include "wcwidth.c" 10#include "clayterm.c" 11#include "transitions.c" 12#include "trie.c" 13#include "input.c"