9 lines
103 B
C
9 lines
103 B
C
|
|
#include "runtime.h"
|
||
|
|
|
||
|
|
|
||
|
|
TSTree TSTreeMake() {
|
||
|
|
TSTree result = {
|
||
|
|
|
||
|
|
};
|
||
|
|
return result;
|
||
|
|
}
|