mirror of
				https://github.com/subsurface/subsurface.git
				synced 2025-02-19 22:16:15 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
	
		
			334 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
	
		
			334 B
		
	
	
	
		
			C
		
	
	
	
	
	
| // SPDX-License-Identifier: GPL-2.0
 | |
| #include "ssrf-version.h"
 | |
| 
 | |
| const char *subsurface_git_version(void)
 | |
| {
 | |
| 	return GIT_VERSION_STRING;
 | |
| }
 | |
| 
 | |
| const char *subsurface_canonical_version(void)
 | |
| {
 | |
| 	return CANONICAL_VERSION_STRING;
 | |
| }
 | |
| 
 | |
| #ifdef SUBSURFACE_MOBILE
 | |
| const char *subsurface_mobile_version(void)
 | |
| {
 | |
| 	return MOBILE_VERSION_STRING;
 | |
| }
 | |
| #endif
 |