open_toontown_panda3d/direct/src/dcparse/indent.cxx

19 lines
461 B
C++

// Filename: indent.cxx
// Created by: drose (05May00)
//
////////////////////////////////////////////////////////////////////
#include "indent.h"
////////////////////////////////////////////////////////////////////
// Function: indent
// Description:
////////////////////////////////////////////////////////////////////
ostream &
indent(ostream &out, int indent_level) {
for (int i = 0; i < indent_level; i++) {
out << ' ';
}
return out;
}