mirror of
				https://github.com/SoftFever/OrcaSlicer.git
				synced 2025-10-30 20:21:12 -06:00 
			
		
		
		
	 0558b53493
			
		
	
	
		0558b53493
		
	
	
	
	
		
			
			The XS was left only for the unit / integration tests, and it links libslic3r only. No wxWidgets are allowed to be used from Perl starting from now.
		
			
				
	
	
		
			111 lines
		
	
	
	
		
			1.5 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			111 lines
		
	
	
	
		
			1.5 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
| /*
 | |
|  * semver.h
 | |
|  *
 | |
|  * Copyright (c) 2015-2017 Tomas Aparicio
 | |
|  * MIT licensed
 | |
|  */
 | |
| 
 | |
| #ifndef __SEMVER_H
 | |
| #define __SEMVER_H
 | |
| 
 | |
| #ifdef __cplusplus
 | |
| extern "C" {
 | |
| #endif
 | |
| 
 | |
| #ifndef SEMVER_VERSION
 | |
| #define SEMVER_VERSION "0.2.0"
 | |
| #endif
 | |
| 
 | |
| /**
 | |
|  * semver_t struct
 | |
|  */
 | |
| 
 | |
| typedef struct semver_version_s {
 | |
|   int major;
 | |
|   int minor;
 | |
|   int patch;
 | |
|   char * metadata;
 | |
|   char * prerelease;
 | |
| } semver_t;
 | |
| 
 | |
| /**
 | |
|  * Set prototypes
 | |
|  */
 | |
| 
 | |
| int
 | |
| semver_satisfies (semver_t x, semver_t y, const char *op);
 | |
| 
 | |
| int
 | |
| semver_satisfies_caret (semver_t x, semver_t y);
 | |
| 
 | |
| int
 | |
| semver_satisfies_patch (semver_t x, semver_t y);
 | |
| 
 | |
| int
 | |
| semver_compare (semver_t x, semver_t y);
 | |
| 
 | |
| int
 | |
| semver_compare_version (semver_t x, semver_t y);
 | |
| 
 | |
| int
 | |
| semver_compare_prerelease (semver_t x, semver_t y);
 | |
| 
 | |
| int
 | |
| semver_gt (semver_t x, semver_t y);
 | |
| 
 | |
| int
 | |
| semver_gte (semver_t x, semver_t y);
 | |
| 
 | |
| int
 | |
| semver_lt (semver_t x, semver_t y);
 | |
| 
 | |
| int
 | |
| semver_lte (semver_t x, semver_t y);
 | |
| 
 | |
| int
 | |
| semver_eq (semver_t x, semver_t y);
 | |
| 
 | |
| int
 | |
| semver_neq (semver_t x, semver_t y);
 | |
| 
 | |
| int
 | |
| semver_parse (const char *str, semver_t *ver);
 | |
| 
 | |
| int
 | |
| semver_parse_version (const char *str, semver_t *ver);
 | |
| 
 | |
| void
 | |
| semver_render (semver_t *x, char *dest);
 | |
| 
 | |
| int
 | |
| semver_numeric (semver_t *x);
 | |
| 
 | |
| void
 | |
| semver_bump (semver_t *x);
 | |
| 
 | |
| void
 | |
| semver_bump_minor (semver_t *x);
 | |
| 
 | |
| void
 | |
| semver_bump_patch (semver_t *x);
 | |
| 
 | |
| void
 | |
| semver_free (semver_t *x);
 | |
| 
 | |
| int
 | |
| semver_is_valid (const char *s);
 | |
| 
 | |
| int
 | |
| semver_clean (char *s);
 | |
| 
 | |
| char *
 | |
| semver_strdup(const char *src);
 | |
| 
 | |
| semver_t
 | |
| semver_copy(const semver_t *ver);
 | |
| 
 | |
| #ifdef __cplusplus
 | |
| }
 | |
| #endif
 | |
| 
 | |
| #endif
 |