add param names to semver function declarations
This commit is contained in:
parent
8081a8d302
commit
41d9f87eab
1 changed files with 2 additions and 2 deletions
4
semver.h
4
semver.h
|
@ -10,8 +10,8 @@ typedef struct {
|
||||||
uint8_t patch;
|
uint8_t patch;
|
||||||
} semver;
|
} semver;
|
||||||
|
|
||||||
bool sveq(semver, semver);
|
bool sveq(semver s1, semver s2);
|
||||||
|
|
||||||
char *svtoa(semver);
|
char *svtoa(semver s);
|
||||||
|
|
||||||
#endif // _MODFETCH_SEMVER_H
|
#endif // _MODFETCH_SEMVER_H
|
||||||
|
|
Loading…
Reference in a new issue