(file) Return to indent.c CVS log (file) (dir) Up to [OMI] / omi / base

 1 krisbash 1.1 #include "indent.h"
 2              #include <pal/format.h>
 3              
 4              void Indent(FILE* os, size_t level)
 5              {
 6                  size_t i;
 7              
 8                  for (i = 0; i < level; i++)
 9                      Ftprintf(os, MI_T("    "));
10              }

ViewCVS 0.9.2