21 lines
292 B
C
21 lines
292 B
C
|
|
#include <debug.h>
|
|
|
|
#include <wcostream/write.h>
|
|
|
|
#include "print.h"
|
|
#include "println.h"
|
|
|
|
void stringtree_println(
|
|
struct stringtree* this,
|
|
struct wcostream* stream)
|
|
{
|
|
ENTER;
|
|
|
|
stringtree_print(this, stream);
|
|
|
|
wcostream_write(stream, L"\n", 1);
|
|
|
|
EXIT;
|
|
}
|
|
|