fixed documentations

This commit is contained in:
Krishna Vedala
2020-06-28 15:18:52 -04:00
parent aa8d74543f
commit 6470f0318b
20 changed files with 92 additions and 94 deletions

View File

@@ -22,7 +22,7 @@
/**
* Node, the basic data structure of the tree
**/
*/
typedef struct Node
{
int data; /**< stores the number */
@@ -34,7 +34,7 @@ typedef struct Node
* creates a new node
* param[in] data value to be inserted
* \returns a pointer to the new node
**/
*/
node *create_node(int data)
{
node *ptr = (node *)malloc(sizeof(node));