j
k
j a
j l
On 06/21/2013 06:24 PM, Cook, Rich wrote:
string indent(int level) { string s; for (int i=0; i
A more efficient way: const int indentStep = 2; string indent(int level) { return string(level * indentStep, ' '); }
Back to the thread
Back to the list