mirror of
				https://github.com/ChristopherA/Learning-Bitcoin-from-the-Command-Line.git
				synced 2025-10-31 10:27:29 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			180 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			180 B
		
	
	
	
		
			C
		
	
	
	
	
	
| #include <stdio.h>
 | |
| #include "wally_core.h"
 | |
| 
 | |
| int main(void) {
 | |
| 
 | |
|   int lw_response;
 | |
|   
 | |
|   lw_response = wally_init(0);
 | |
|   printf("Startup: %d\n",lw_response);
 | |
| 
 | |
|   wally_cleanup(0);
 | |
|   
 | |
| }
 |