add param names to semver function declarations

This commit is contained in:
jacekpoz 2024-02-11 22:13:02 +01:00
parent 8081a8d302
commit 41d9f87eab
No known key found for this signature in database
GPG key ID: 94E812A8B12AAE3C

View file

@ -10,8 +10,8 @@ typedef struct {
uint8_t patch;
} semver;
bool sveq(semver, semver);
bool sveq(semver s1, semver s2);
char *svtoa(semver);
char *svtoa(semver s);
#endif // _MODFETCH_SEMVER_H