这段中序线索化
```c
ThrBiTreeNode *pre;
void inThread(ThrBiTreeNode *pointer){
if(pointer){
inThread(pointer->Lchild;
if(pointer->Lchild==NULL){
pointer->Ltag=1;
pointer->Lchild=pre;}
if(pre!=NULL&&pre->Rchild==NULL){
pre->Rchild=pointer;
pre->Rtag=1;}
pre=pointer;
inThread(pointer->Rchild);}
是怎么把这个也线索化的