Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix license information content and format | Tomasz Kramkowski | 2021-08-05 | 1 | -1/+1 |
| | |||||
* | Define PRIuSIZE to avoid issues compiling with msvcrt | Tomasz Kramkowski | 2021-08-05 | 1 | -2/+2 |
| | | | | | | | | On windows and when cross compiling with mingw the standard library only supports C89 which means that print format arguments cannot take "%zu". To fix this, a PRIuSIZE macros is needed which expands to PRIu32 on windows 32 bit and PRIu64 on windows 64 bit. | ||||
* | explicitly cast printf %p params to (void *) | Tomasz Kramkowski | 2021-08-05 | 1 | -1/+1 |
| | |||||
* | Implement a basic pack function | Tomasz Kramkowski | 2020-09-12 | 1 | -0/+81 |