Oolite 1.91.0.7604-240417-a536cbe
Loading...
Searching...
No Matches
Classes | Functions
OldSchoolPropertyListWriting.m File Reference
#include <assert.h>
import "OldSchoolPropertyListWriting.h"
import "NSNumberOOExtensions.h"
+ Include dependency graph for OldSchoolPropertyListWriting.m:

Go to the source code of this file.

Classes

category  NSObject(OldSchoolPropertyListWriting_Private)
 

Functions

static void AppendNewLineAndIndent (NSMutableString *ioString, unsigned indentDepth)
 

Function Documentation

◆ AppendNewLineAndIndent()

static void AppendNewLineAndIndent ( NSMutableString * ioString,
unsigned indentDepth )
static

Definition at line 325 of file OldSchoolPropertyListWriting.m.

326{
327 [ioString appendString:@"\n"];
328 while (indentDepth--) [ioString appendString:@"\t"];
329}