Fix alpha legacy dir detection, Fix SemVer value ctor

This commit is contained in:
Vojtech Kral 2018-04-19 18:29:19 +02:00
parent bdaf1b01be
commit d671e06c32
4 changed files with 24 additions and 6 deletions

View file

@ -620,7 +620,7 @@ semver_numeric (semver_t *x) {
return num;
}
static char *semver_strdup(const char *src) {
char *semver_strdup(const char *src) {
if (src == NULL) return NULL;
size_t len = strlen(src) + 1;
char *res = malloc(len);

View file

@ -98,6 +98,9 @@ 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);