mirror of
				https://github.com/theoludwig/libcproject.git
				synced 2025-05-21 23:21:15 +02:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
		
			245 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			245 B
		
	
	
	
		
			C
		
	
	
	
	
	
| #ifndef __STACK_TEST__
 | |
| #define __STACK_TEST__
 | |
| 
 | |
| #include <assert.h>
 | |
| #include <stdint.h>
 | |
| #include <stdlib.h>
 | |
| 
 | |
| #include "libcproject.h"
 | |
| 
 | |
| void stack_test();
 | |
| 
 | |
| void stack_initialization_test();
 | |
| 
 | |
| void stack_push_test();
 | |
| 
 | |
| void stack_pop_test();
 | |
| 
 | |
| #endif
 |