Merge branch 'master' into dev

This commit is contained in:
Romain Vimont
2021-05-09 11:00:30 +02:00
16 changed files with 1492 additions and 436 deletions

View File

@@ -16,7 +16,7 @@ size_t
xstrncpy(char *dest, const char *src, size_t n);
// join tokens by sep into dst
// returns the number of chars actually written (max n-1) if no trucation
// returns the number of chars actually written (max n-1) if no truncation
// occurred, or n if truncated
size_t
xstrjoin(char *dst, const char *const tokens[], char sep, size_t n);