13 lines
192 B
C
13 lines
192 B
C
|
#ifndef __IN303_DISPLAY_H__
|
||
|
#define __IN303_DISPLAY_H__
|
||
|
|
||
|
#include "huftree.h"
|
||
|
|
||
|
/**
|
||
|
* Afficher sur la sortie standard l'arbre passé
|
||
|
* en paramètre
|
||
|
*/
|
||
|
void printTree(HufTree tree);
|
||
|
|
||
|
#endif
|