fixed some more with the readme
This commit is contained in:
		
							parent
							
								
									1ccc72c16d
								
							
						
					
					
						commit
						76e80dbd9a
					
				
							
								
								
									
										12
									
								
								README.md
								
								
								
								
							
							
						
						
									
										12
									
								
								README.md
								
								
								
								
							| 
						 | 
					@ -4,12 +4,12 @@ A handy collection of C algorithms compiled into one header file for use anywher
 | 
				
			||||||
## Functionality
 | 
					## Functionality
 | 
				
			||||||
 | 
					
 | 
				
			||||||
### Stack
 | 
					### Stack
 | 
				
			||||||
The stack is probably the most basic storage structure, using the 'first-in, first-out' approach.
 | 
					The stack is probably the most basic storage structure, using the 'first-in, first-out' approach. The following functions are the only ones available for stack manipulation, as it is quite a minimalistic data structure.
 | 
				
			||||||
* ```c Stack createStack()```
 | 
					* ``` Stack createStack() ```
 | 
				
			||||||
* ```c void freeStack(Stack *s)```
 | 
					* ``` void freeStack(Stack *s) ```
 | 
				
			||||||
* ```c void pushToStack(int item, Stack *s)```
 | 
					* ``` void pushToStack(int item, Stack *s) ```
 | 
				
			||||||
* ```c int popFromStack(Stack *s)```
 | 
					* ``` int popFromStack(Stack *s) ```
 | 
				
			||||||
* ```c void printStack(Stack s)```
 | 
					* ``` void printStack(Stack s) ```
 | 
				
			||||||
 | 
					
 | 
				
			||||||
### Queue
 | 
					### Queue
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in New Issue