From 7a8ec0f4e343cc6e806f76452e4f85fe0a943001 Mon Sep 17 00:00:00 2001 From: Raouak Haroun Date: Mon, 25 Mar 2019 14:07:09 +0100 Subject: [PATCH] commit struct arbre --- projet.c | 6 ++++++ 1 file changed, 6 insertions(+), 0 deletions(-) create mode 100644 projet.c diff --git a/projet.c b/projet.c new file mode 100644 index 0000000..300f73e --- /dev/null +++ b/projet.c @@ -0,0 +1,6 @@ +typedef struct node +{ + int key; + struct node *left; + struct node *right; +} node ; -- libgit2 0.21.2