docs: Minor documentation improvements (data_structures/queue.c) (#616)

This commit is contained in:
Shezza221b
2020-10-01 22:49:55 +05:30
committed by GitHub
parent 6f385ed4a4
commit d3bb124b90

View File

@@ -8,7 +8,10 @@
////////////////////////////////////////////////////////////////////////////////
// DATA STRUCTURES
struct node
/**
* Defining the structure of the node which contains 'data' (type : integer), two pointers 'next' and 'pre' (type : struct node).
*/
struct node
{
int data;
struct node *next;