17 lines
233 B
C
17 lines
233 B
C
|
|
#include <debug.h>
|
|
|
|
#include "print.h"
|
|
#include "println.h"
|
|
|
|
void stringtree_println(
|
|
const struct stringtree* this,
|
|
FILE* stream)
|
|
{
|
|
ENTER;
|
|
|
|
stringtree_print(this, stream), fputs("\n", stream);
|
|
|
|
EXIT;
|
|
}
|
|
|