#include "indent.h" #include void Indent(FILE* os, size_t level) { size_t i; for (i = 0; i < level; i++) Ftprintf(os, MI_T(" ")); }