rapiwrapper.h:214:34: warning: argument to 'sizeof' in 'void memset(void, int, size_t)' call is the same expression as the destination; did you mean to dereference it? [-Wsizeof-pointer-memaccess]
Source code is
memset(version, 0, sizeof(version));
Suggest new code
memset(version, 0, sizeof(*version));
Also the same problem seems to occur at lines 223 and 238
dcb, do you want commit access to the repo?